当前位置:   article > 正文

微信小程序getLocation报错 getLocation:fail the api need to be declared in the requiredPrivateInfos field in

getlocation:fail the api need to be declared in the requiredprivateinfos fie

getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/ext.json

微信小程序在使用wx.getLocation控制台报错:getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/ext.json

    wx.getLocation({
      type: 'wgs84',
      success: res => {
        const latitude = res.latitude;
        const longitude = res.longitude;
        console.log('用户位置:', latitude, longitude);
      },
      fail: err => {
        console.error('获取用户位置失败:', err);
      }
    });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述
原因 在小程序的 app.json 或者 ext.json 文件中,有一个 requiredPrivateInfos 字段用于声明需要使用的私有接口。这些私有接口需要在此字段中进行声明。

解决方案:
在app.json内插入一下代码

  "requiredPrivateInfos":["getLocation"],
  • 1
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号