- 升级微信版本8.0.40 之后获地理位置失败 getLocation:fail ?
升级微信版本8.0.40 之后 小程序获取获地理位置失败 getLocation:fail privacy permission is not authorized async function getLocation(parames = {}, isRefresh = false) { let locationResult = await wx.getLocation(parames).catch((err) => ({ err: 'err', ...err })) if (locationResult.err === 'err') { if (locationResult.errMsg == 'getLocation:fail:auth denied' || locationResult.errMsg == 'getLocation:fail auth deny' || locationResult.errMsg == 'getLocation:fail authorize no response') { openSettingForLocation(parames).then(()=>{ return Promise.resolve(locationResult) }).catch(()=>{ return Promise.reject(locationResult) }) } else { wx.showModal({ title: '提示', content: '获取地理位置失败', icon: 'error', showCancel: false, }) return Promise.reject(locationResult) } } } {"err":"err","errMsg":"getLocation:fail privacy permission is not authorized","errno":104}
2023-08-15 - getCanvasHandlers is not defined
小程序绘画时出现 getCanvasHandlers is not defined[图片] ,基础库中最新的版本都不行,而一些稍微旧一点的版本是可以的。 如图:红色圈的版本号是会出现报错信息:getCanvasHandlers is not defined,而2.24.1和再往前的基础库版本是可以正常运行的 [图片]
2022-07-26 - iOS 15 wx.chooseImage白屏2021-12-30
- IOS 15,wx.chooseImage白屏?
苹果手机,IOS 15版本, 微信版本8.0.13, wx.chooseImage,选择照片或拍照,图片确认页面,点击完成,然后非常高的概率出现白屏。 同样小程序,IOS 14无此问题
2021-09-24