この記事では主に、WeChat アプレットの同期認証リクエストの詳細な説明に関する関連情報を紹介します。アプレットを初めて開くとき、同時に複数の権限をリクエストする必要があり、ユーザーはそれらを 1 つずつ認証します。このような要件が実現されると、それを必要とする友人は以下を参照してください
WeChat アプレット同期リクエストの承認の詳細な説明
要件分析:
1. アプレットが最初に開かれたとき。同時に複数の権限をリクエストする必要があり、ユーザーはそれらを 1 つずつ承認します。
([‘scope.userInfo',‘scope.userLocation',‘scope.address',‘scope.record',‘scope.writePhotosAlbum'])
問題分析:
// 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() } }) }) }) }) })
分析と解決策:
以上が同期リクエスト承認を実装した WeChat アプレットの分析例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。