在第一个页面拍照后进入第二个页面,之后返回到第一个页面,页面无法调用拍照功能
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) => {
}
})
}