takePhoto() {
// wx.navigateTo({
// url: ‘…/testResult/testResult’
// });
const ctx = wx.createCameraContext()
ctx.takePhoto({
quality: ‘high’,
success: (res) => {
console.log(res)
this.setData({
src: res.tempImagePath
})
app.globalData.src = res.tempImagePath;
wx.navigateTo({
url: ‘…/testResult/testResult’
});
},
complete: (res) => {
}
})
}
你好,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。