- wx.getLocation怎么某些手机会有获取失败的情况?
wx.getLocation({ type: 'gcj02', isHighAccuracy: true, highAccuracyExpireTime: 4000, success(res) {}, fail(res) { console.log(res, "res"); wx.showModal({ title: "检测到您未开启手机定位,请先去设置中打开定位,开启后请点击'重进程序'", confirmText: "重进程序", cancelText: "返回首页", success(res) { if (res.confirm) { wx.restartMiniProgram({ path: '/pages/index/index' }) } if (res.cancel) { wx.navigateBack({ delta: 1 }) } } }) }, complete(res) {}, })
06-28 - wx.getLocation怎么某些手机会有获取失败的情况?
wx.getLocation({ type: 'gcj02', isHighAccuracy: true, highAccuracyExpireTime: '5000',
06-17 - web-view外链页面button打开链接部分手机无法打开
<web-view src="https://www.qhspj.com/Intelligent-module/#/teacher"></web-view> 上面可以打开外链 这个外链页面有一个button跳转(https://www.baidu.com/)这个页面 苹果手机小米手机华为手机可以跳转 三星手机vivo手机无法跳转
2022-06-09