wx.chooseVideo 用真调试可以上传视频,用预览和上传体验版本二维码上传失败?
代码片段,工具开发版本v1.02.1907300,调试基础库 2.8.3
wx.chooseVideo 用真调试可以上传视频,用预览和上传体验版本二维码上传失败,请问是怎么回事。
wx.chooseVideo({
sourceType: [‘album’, ‘camera’],
maxDuration: 60,
camera: ‘back’,
success(res) {
let filePath = res.tempFilePath;
console.log(res)
wx.showLoading({
title: ‘视频努力上传中…’,
mask:true
})
},
fail(res){
wx.showToast({
title: ‘上传失败’,
})
},
complete(res){
wx.showToast({
title: ‘上传结束’,
})
}
})