- 想用小程序/企微跳转到第三方浏览器但是window.location,loaction报错?
1.window.location.href = 'https://' + "baidu.com" 想用这个做跳转但是报错 Cannot read property 'location' of undefined 2.还查到了另一种写法 wx.invoke('openDefaultBrowser', { 'url': 'https://www.baidu.com/' }, function (res) { console.log("打开浏览器~~~res" + res) if (res.err_msg == "openDefaultBrowser:ok") { alert('跳转成功!') } }); 但是这个写法在运行的时候, wx.invoke is not a function又在报这个错
2023-09-05 - movable-view在进行双指缩放时中心点只能是画面的中心点吗,不可以是双指中心点吗?
movable-view在进行双指缩放时中心点只能是画面的中心点吗,不可以是双指中心点吗?
2023-04-11 - wx.getLocation使用的时候精度怎么一直在35降不下去了?
wx.getLocation使用的时候精度怎么一直在35降不下去了?昨天还是好好的,今天突然精度最低就只能降到35了,start和change组合使用那个还是正常,就getLocation突然不好用了 wx.getLocation({ // 小程序 的获取当前的位置经纬度 type: 'gcj02', isHighAccuracy: true, // 开启高精度模式 highAccuracyExpireTime: 3000, success: (res) => { console.log(res, '在成功的回调之中') console.log(res.horizontalAccuracy, '+-------------')
2023-03-29