- vivo、部分iphone11调起前置摄像camera黑屏是怎么回事?
最近刚开发好一个企业内部使用的小程序,用了camera做人脸截取,但是部分手机调起camera时出现黑屏现象,两台iphone11,一台ios13.4.1正常,一台ios13.5.2一开始正常,后来出现黑屏且一直无法调起前置,手机相机没问题,还有vivo iqoo偶尔会出现黑屏现象;
/camera> /cover-image> 请调整人脸角度后点击下方按钮/cover-view> /cover-view> /cover-view> /cover-view> /cover-view> /cover-image> /cover-view> /view> /zan-pop> let camera_show = this.data.camera_show, that = this; wx.getSetting({ success(res) { console.log(res) if (res.authSetting['scope.camera'] != undefined && !res.authSetting['scope.camera']) { //非初始化进入该页面,且未授权 wx.showModal({ title: '是否授权摄像头功能功能', content: '需要授权使用摄像头功能,请确认授权,否则无法使用', success: function (res) { if (res.cancel) { wx.showToast({ title: '授权失败', icon: 'none', duration: 1000 }) } else if (res.confirm) { wx.openSetting({ success: function (dataAu) { if (dataAu.authSetting["scope.camera"]) { wx.showToast({ title: '授权成功', icon: 'success', duration: 1000 }) that.setData({ camera_show: true }) } else { wx.showToast({ title: '授权失败', icon: 'none', duration: 1000 }) } } }) } } }) } else { that.setData({ camera_show: !camera_show }) } } }) 2020-08-19 - 直播跳转商品详情页,再通过switchTab回到首页,首页通过代码点击跳转功能失效?
我从直播组件点击商品跳到商品详情页后,我通过switchTab回到首页,首页通过点击跳转的功能都失效了,但是我使用navigator标签跳转再返回上一页,点击跳转的功能又可以了。请问直播缩小屏是否有影响到了页面功能?
2020-05-19 - 开发者工具 wxml代码区域空白
autoplay[图片]
2020-04-29