- 原生组件canvas 如何隐藏在页面之下?
如题,设置了canvas的z-index不起作用
03-20 - camera 使用示例 真机调试也没法预览拍照?
华为mate20pro 微信版本8.0.32
2023-01-12 - camera takePhoto 无法进入success,fail 只能进入complete
[图片] 只能进入complete 而且没有tempImagePath <camera device-position="front" style="width: 180px, height: 180px"></camera> if (!this.context) { this.context = uni.createCameraContext(); } // 指定图片的DataURL(图片的base64编码数据) try{ this.context.takePhoto({ success: (res) => { this.uploadFaceImg(res.tempImagePath); }, fail: (res) => { this.clearTimer(); this.$emit('result', { code: -2, msg: '拍照接口出现错误' }); }, complete: (res) => { console.log(res, 'camera complete') } }); }catch(e){ //TODO handle the exception console.log(e, 'takePhoto') }
2023-01-12