wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: this.appid, // 必填,公众号的唯一标识
timestamp: res.data.data.timestamp, // 必填,生成签名的时间戳
nonceStr: res.data.data.nonceStr, // 必填,生成签名的随机串
signature: res.data.data.signature, // 必填,签名
jsApiList: ["checkJsApi", "openLocation", "getLocation"],
});
wx.openLocation({
latitude: Number(latitude), // 纬度,范围为-90~90,负数表示南纬
longitude: Number(longitude), // 经度,范围为-180~180,负数表示西经
scale: 15, // 缩放比例
name: address,
address: address,
success: (r) => {
console.log("成功" + r);
},
fail: (e) => {
this.Toast("失败" + e.errMsg);
console.log("失败" + e);
},
});
errMsg:"openLocation:the permission value is offline verifying"
wx.config报错了。