wx.createCameraContext() 录制一段视频,然后调用 wx.getFileSystemManager().readFile() 读取这段视频的本地路径,模拟器没问题,但预览或真机调试不走读取的方法,并且真机调试页面右方一直报警告和错误,然后自动恢复调试然后又错误。麻烦帮助解决一下或告知原因,我需要拿到拍摄视频数据加密后上传到后台。
ctx.stopRecord({
success: function(res) {
var tempFilePath = res.tempVideoPath
// 读文件
wx.getFileSystemManager().readFile({
filePath: tempFilePath,
encoding: ‘base64’,
success: function (readRes) {
}
})
}
})
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)