wx.getSetting(Object object)
基础库 1.2.0 开始支持,低版本需做兼容处理。
获取用户的当前设置。返回值中只会出现小程序已经向用户请求过的权限。
wx.getSetting({ success(res){ if (res.authSetting['scope.werun']) { console.log('已授权获取微信步数') }else{ wx.authorize({ scope: 'scope.werun', success(){ console.log("授权成功") },fail(){ wx.showModal({ title: '提示', content: '获取微信运动步数,需要开启计步权限', success: function (res) { if (res.confirm) { //跳转去设置 wx.openSetting({ success: function (res) { } }) } else { //不设置 } } }) } }) } } })