[bug]wx.chooseVideo参数sourceType在部分安卓下不生效
sourceType设置成camera 在华为 honor 9 Lite下 仍然可以从相册选择视频。
代码
wx.chooseVideo({ sourceType: ['camera'], maxDuration: 5, camera: 'front', success: function(res) { console.log('开始上传...'); console.log('res.tempFilePath:', res.tempFilePath) const v_filePath = res.tempFilePath; |
