问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug Camera 客户端 6.7.2 v1.02.1808300
- 微信小程序Camera组件调用摄像头持续自动拍照上传,
部分手机无法按照预期自动拍照(华为手机尤其明显),
而且2~3分钟后手机发烫,电量耗费严重。
这个takePhoto方法会将照片上传到服务器,服务器返回信息后继续拍照,但有时候拍照很随缘,takePhoto后并没有拍照
//拍照功能
takePhoto() {
this.ctx.takePhoto({
quality: 'low',
success: (res) => {
this.setData({
tempSrc: res.tempImagePath
})
this.setData({
tempImg: res.tempImagePath,
})
this.uploadImg(res.tempImagePath);
}
});
},
微信小程序开发问题解答
微信小程序开发者回答: 摄像头本身就是十分耗性能的,长时间开启,是会导致性能降低的以及手机发热的
本文网址:http://www.91bianli.com/weixinxiaochengxu/45774.html