调用失败返回结果 chooseVideo:fail null ,errcode -99
ChooseVideo(){
let that = this
uni.chooseVideo({
maxDuration: 60,
sourceType: ['camera'],
success: function (res) {
console.log(res,'视频本地地址')
that.errmsg = res
that.videolist = []
that.videolist.push(res.tempFilePath)
that.uploadvideo()
},
fail:(err) =>{
console.log(err)
uni.showToast({
title: err+'api回调失败',
icon: 'none',
})
}
});
},
在其他安卓手机运行正常,在此手机 视频回调方式无效报错。
相机权限已经全开,此手机为防爆手机 设置的最大视频时常参数无效(maxDuration)