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

报错现象
image.png
解决方案

打开uniapp项目的配置文件manifest.json,选择“源码视图”。


image.png
上代码
/* 小程序特有相关 */
    "mp-weixin": {
        "appid": "",
        "setting": {
            "urlCheck": true,
            "es6": true,
            "minified": true
        },
        "usingComponents": true,
        "permission": {
            "scope.userLocation": {
                "desc": "更加精准的推荐检测站位置"
            }
        },
        "requiredPrivateInfos": [
            "getLocation"
        ]
    },

你可能感兴趣的:(getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/ext.json)