wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: this.data.appId, // 必填,公众号的唯一标识
timestamp: Number(this.data.timestamp), // 必填,生成签名的时间戳
nonceStr: this.data.nonceStr, // 必填,生成签名的随机串
signature: this.data.signature, // 必填,签名
jsApiList: [ "getLocation"]
});
wx.ready(function () {
console.log('初始化js-sdk成功');
wx.checkJsApi({
jsApiList: ['getLocation'], // 需要检测的JS接口列表,所有JS接口列表见附录2,
success: function (res) {
console.log(res)
// 以键值对的形式返回,可用的api值true,不可用为false
// 如:{"checkResult":{"chooseImage":true},"errMsg":"checkJsApi:ok"}
console.log('检查', res)
wx.getLocation({
type: 'wgs84',
success(res) {
console.log(res)
alert(res)
this.latitude = res.latitude
this.longitude = res.longitude
}
})
}
})
})