收藏
回答

IOS 调用wx.openLocation 报错 安卓没有问题?

 wx.config({
                    debugtrue// 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
                    appIdthis.appid, // 必填,公众号的唯一标识
                    timestamp: res.data.data.timestamp, // 必填,生成签名的时间戳
                    nonceStr: res.data.data.nonceStr, // 必填,生成签名的随机串
                    signature: res.data.data.signature, // 必填,签名
                    jsApiList: ["checkJsApi""openLocation""getLocation"],
                });


                wx.openLocation({
                    latitudeNumber(latitude), // 纬度,范围为-90~90,负数表示南纬
                    longitudeNumber(longitude), // 经度,范围为-180~180,负数表示西经
                    scale15// 缩放比例
                    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"

回答关注问题邀请回答
收藏

1 个回答

  • 青团社
    青团社
    2021-12-14

    wx.config报错了。

    2021-12-14
    有用
    回复
登录 后发表内容