([‘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()
}
})
})
})
})
})
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有