[图片][图片][图片] 部分机型和版本号
使用wx.chooseImage 使用相机 部分机型无法唤起闪光灯 ?wx.chooseImage({ count: 1, sizeType: ['compressed'], //可选择原图或压缩后的图片 sourceType: ['camera'], //可选择性开放访问相册、相机 success: res => { const images = res.tempFilePaths this.setData({ images: images }) } 以华为为主
2020-09-07[图片] 定位失效的全部都是这个机型
调用腾讯位置api 部分机型不生效问题?getLoca() { var that = this; //初始化 var qmapSDK = new qqMap({ key: '我自己的key' }) wx.getLocation({ type: 'wgs84', success: function (res) { qmapSDK.reverseGeocoder({ location: { latitude: res.latitude, longitude: res.longitude }, success: function (e) { var location = e.result.address; that.data.lat = e.result.location.lat; that.data.lng = e.result.location.lng that.setData({ location: location }) }, fail: function (res) { } }) }, }) }, 代码如上,今天有客户反应,上午还好使,下午就不好使。 之前陆陆续续的也有这样的问题。
2020-07-23