未找到摄像头
takePhoto() {
const ctx = wx.createCameraContext()
ctx.takePhoto({
quality: ‘high’,
success: (res) => {
this.setData({
src: res.tempImagePath
})
}
})
}
使用wx.createCameraContext()调用相机模拟器显示未找到摄像头,但控制台没有报错。求指点。