https://developers.weixin.qq.com/minigame/dev/api/media/camera/wx.createCamera.htmlhttps://developers.weixin.qq.com/minigame/dev/api/media/camera/Camera.takePhoto.html
代码:(这个地方相机调用起来了,但是没有拍照按钮)
takePhoto() {
const ctx = wx.createCamera()
ctx.takePhoto({
quality: 'high',
success: (res) => {
this.setData({
src: res.tempImagePath
})
wx.previewImage({
current: res.tempImagePath, // 当前显示图片的http链接
urls: [res.tempImagePath] // 需要预览的图片http链接列表
})
},
fail: function (e) {
console.log("拍摄失败");
console.log(e);
}
})
},
请问解决了吗