微信小程序实现同步请求授权的实例分析

互联网 17-9-12
这篇文章主要介绍了微信小程序 同步请求授权的详解的相关资料,在小程序首次打开的时候,我需要同时请求获取多个权限,由用户逐一授权,这样的需求实现,需要的朋友可以参考下

微信小程序 同步请求授权的详解

需求分析:

([‘scope.userInfo',‘scope.userLocation',‘scope.address',‘scope.record',‘scope.writePhotosAlbum'])

2. promise能很好的解决问题,试着尝试了一下,下面代码分为两个文件。

// scope.js  import es6 from '../helpers/es6-promise'    // 获取用户授权  function getScope(scopeName) {   return new es6.Promise(function (resolve, reject) {    // 查询授权    wx.getSetting({     success(res) {      if (!res.authSetting[scopeName]) {       // 发起授权       wx.authorize({        scope: scopeName,        success() {         resolve(0)        }, fail() {         resolve(1)        }       })      }     }    })   })  }    module.exports = { getScope: getScope }
// index.js  import scope from "../../service/scope"  Page({  onShow() {    let list = ["scope.userInfo", "scope.userLocation", "scope.address", "scope.record"];    // 记录请求结果    let num = 0;    // 问题1:怎么改成循环方式?    scope.getScope(list[0]).then(function (res) {     num += res;     scope.getScope(list[1]).then(function (res) {      num += res;      scope.getScope(list[2]).then(function (res) {       num += res;       scope.getScope(list[3]).then(function (res) {        num += res;        // 调起设置界面        if (num) {         wx.openSetting({          success(res) {           // 允许获取用户信息           if (res.authSetting["scope.userInfo"])            userService.login()          }         })        } else {         userService.login()        }       })      })     })    })  })

分析求解:

2.wx.authorize接口,success参数官方给出的解释是(接口调用成功的回调函数),其实不然,实际上是接口调用成功,并且获取到了scope指定的权限

以上就是微信小程序实现同步请求授权的实例分析的详细内容,更多内容请关注技术你好其它相关文章!

来源链接:
免责声明:
1.资讯内容不构成投资建议,投资者应独立决策并自行承担风险
2.本文版权归属原作所有,仅代表作者本人观点,不代表本站的观点或立场
标签: 请求
上一篇:php获取远程图片并下载保存到本地的方法分析 下一篇:微信小程序如何使用rich-text的方法详解

相关资讯