时间:2019-05-07 来源:小程序工厂
已知问题哈,感谢反馈。
初步定位原因是部分低配机型,微信小程序跳入拍视频页时会因为系统内存不足被杀掉,这个是系统行为,暂时无法规避。
最近的版本我们会优化(调整拍摄的流程)来降低被杀的概率,留意微信后续更新。
机型:MI 8 SEarmeabi-v7
微信版本:6.7.3
基础库版本:2.3.2
代码片段:
var that = this;
wx.chooseVideo({
sourceType: ['album', 'camera'],
maxDuration: 60,
camera: 'back',
success(res) {
console.log(res.tempFilePath)
that.setData({
src: res.tempFilePath,
videoSrc: res.tempFilePath
})
that.uploadFile(res.tempFilePath);
}
})
你好,问题未复现。请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
机型:MI 8 SEarmeabi-v7微信版本:6.7.3基础库版本:2.3.2代码片段:var that = this;wx.chooseVideo({sourceType: ['album', 'camera'],maxDuration: 60,camera: 'back',success(res) {console.log(res.tempFilePath)that.setData({src: res.tempFilePath,videoSrc: res.tempFilePath})that.uploadFile(res.tempFilePath);}})
麻烦按照教程来提供下代码片段
请问一下,在哪里有教程?
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
下面是我生成的代码片段
wechatide://minicode/SfIrSxmb7l3t
很抱歉刚刚回复给你的代码片段有bug,下面是我新生成的代码片段,谢谢
wechatide://minicode/ihIQOxmG7M3x