chooseVideo 兼容性问题
目前发现华为P9录制视频(选择视频正常)返回{“errMsg”:“chooseVideo:fail”},可搜索 ‘分享视频’ 小程序测试,这是必现的bug
chooseVideo: function () {
var that = this
wx.chooseVideo({
maxDuration: 30,
success: function (res) {
that.setData({
filePath: res.tempFilePath,
overTimeHidden: res.duration <= 30
})
},
fail: function(res) {
console.log(JSON.stringify(res))
}
})
},