微信小程序 同步请求授权的详解
程序员文章站
2022-05-14 19:25:07
微信小程序 同步请求授权的详解
需求分析:
1.在小程序首次打开的时候,我需要同时请求获取多个权限,由用户逐一授权。
([‘scope.useri...
微信小程序 同步请求授权的详解
需求分析:
1.在小程序首次打开的时候,我需要同时请求获取多个权限,由用户逐一授权。
([‘scope.userinfo',‘scope.userlocation',‘scope.address',‘scope.record',‘scope.writephotosalbum'])
问题分析:
1. wx.authorize接口同时调用,请求多个权限,由于异步原因,将授权请求一并发出,显然不符合要求。
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() } }) }) }) }) })
分析求解:
1.代码中问题1写法过于笨,但是尝试通过循环方式调用写法,又不知道如何处理回调问题。
2.wx.authorize接口,success参数官方给出的解释是(接口调用成功的回调函数),其实不然,实际上是接口调用成功,并且获取到了scope指定的权限
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇: Angular 1.x个人使用的经验小结