wx.openSetting 打开小程序权限设置界面
在小程序中使用 wx.getSetting 可以获取用户的当前授权设置,如果返回的结果中没有所需要的授权,或者授权被拒绝,可以通过 wx.openSetting 方法打开小程序权限设置界面,让用户重新授权。该界面只会显示已经向用户请求过的权限。
以下代码基于 uni-app 框架:
export default { methods: { openSetting() { wx.openSetting({ success (res) { console.log(res) } }) } } }
扫描下方的二维码,在手机上试一试: