Cameraframelistener 真机调试监听失败
- 当前 Bug 的表现(可附上截图)
- 预期表现
listener.start()回调fail
-
复现路径
-
提供一个最简复现 Demo
Page({
onLoad() {
this.ctx = wx.createCameraContext()
const l = this.ctx.onCameraFrame((frame)=>{
console.log(frame)
})
listener.start({
success: function(){
console.log(‘listener start’)
},
fail: function(){
console.log(‘listener fail’)
}
})
}
})
