获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
oppoA93存在相同问题 没有使用微信分身
wx.chooseImage拍照后,选择图片为什么黑屏了?https://developers.weixin.qq.com/miniprogram/dev/api/media/image/wx.chooseImage.html 其他机型都正常,唯独这个机型出现这个问题,具体代码及相关机型以及微信版本,和效果图请看下方图片: wx.chooseImage({ count: 1, sourceType: ['camera'], sizeType: ['compressed'], success: async (res) => { const tempFilePaths = res.tempFilePaths; console.log(tempFilePaths[0], '照片地址'); this.setData({ url: tempFilePaths[0], showCanvas: true, }); }, fail: function(error) { console.error('失败', error); wx.showToast({ title: '选择图片失败', icon: 'none', }); }, }); [图片][图片][图片][图片]
2021-09-15