您解决了吗
camera wx.stopRecord拿不到返回的结果成功失败都木有?代码是官方的案例代码,没改动camera wx.stopRecord拿不到返回的结果成功失败都木有?代码是官方的案例代码,没改动,好多安卓各种问题,有的start,有的stop有的还闪退!!!!!! 手机型号看右边图 是锤子手机 代码是官方的例子 Page({ onLoad() { this.ctx = wx.createCameraContext() }, takePhoto() { console.log(0) this.ctx.takePhoto({ quality: 'high', success: (res) => { this.setData({ src: res.tempImagePath }) } }) }, startRecord() { console.log(1) this.ctx.startRecord({ success: (res) => { console.log('startRecord') } }) }, stopRecord() { console.log(2); this.ctx.stopRecord({ success: (res) => { console.log(28,res) this.setData({ src: res.tempThumbPath, videoSrc: res.tempVideoPath },()=>{ console.log(778) }) } }) }, error(e) { console.log(e.detail) } }) [图片]
2021-08-11