getSetting:fail 系统错误,错误码:1
onLoad: function (options) { // 可以通过 wx.getSetting 先查询一下用户是否授权了 "scope.userLocation" 这个 scope wx.getSetting({ success(res) { if (!res.authSetting[ 'scope.userLocation' ]) { wx.authorize({ scope: 'scope.userLocation' , success() { } }) } }, complete(res) { console.log(res) }, fail(res) { console.log(res) } }) |
返回结果为 getSetting:fail 系统错误,错误码:1
不知道什么原因,求助,谢谢