相关学习推荐:微信小程序教程
前言小程序在开发过程中很多地方需要用户的授权,需要查询用户是否授权,没有授权引导用户去授权。所以我就把这个流程做了下封装,小可爱们可以参考一下,多多提意见一起进步。
流程图有时候项目的很多地方都会用到判断用户是否授权的逻辑,所以封装是非常有必要的。下面我们拿位置授权作为例子说一下一般的流程。
很多应用在一进入就会让用户授权地理位置,可以拿到用户的经纬度通过计算获取距离用户的距离。下面是一个简单的流程图。
开发先要通过wx.getsettiing()获取用户的当前设置,官方文档。如果拥有权限进行下一步操作,如果没有再次请求用户打开权限,如果点击用户点击否,授权失败。如果用户同意,调用wx.opensetting()调起客户端小程序设置界面,返回用户设置的操作结果,官方文档。打开设置页面后如果用户没有打开授权就返回了,会拿到授权失败的结果。如果打开了授权返回之前的页面就授权成功了。
这边要注意一点 获取地理授权 要在 app.json 添加下面代码。
permission: { scope.userlocation: { desc: 您的位置信息将用于展示您所在城市的信息 } }复制代码
主要代码在utils文件夹下新建 auth.js 用于授权操作,然后在代码中就可以直接2行搞定拉!
/*** 微信授权*/const authlist = { userinfo: { apiname: ['getuserinfo'], authtitle: '需要使用你的用户信息', authcontent: '需要使用你的用户信息,请确认授权' }, userlocation: { apiname: ['getlocation', 'chooselocation'], authtitle: '请求授权当前位置', authcontent: '需要获取您的地理位置,请确认授权' }, address: { apiname: ['chooseaddress'], authtitle: '需要使用你的通讯地址', authcontent: '需要使用你的通讯地址,请确认授权' }, invoicetitle: { apiname: ['chooseinvoicetitle'], authtitle: '需要使用你的发票抬头', authcontent: '需要使用你的发票抬头,请确认授权' }, invoice: { apiname: ['chooseinvoice'], authtitle: '需要获取你的发票', authcontent: '需要获取你的发票,请确认授权' }, werun: { apiname: ['getwerundata'], authtitle: '需要获取你的微信运动数据', authcontent: '需要获取你的微信运动数据,请确认授权' }, writephotosalbum: { apiname: ['saveimagetophotosalbum', 'savevideotophotosalbum'], authtitle: '请求授权相册', authcontent: '需要使用你的相册,请确认授权' },}/*** @description: 返回值中只会出现小程序已经向用户请求过的权限* @param {string} 权限名称* @return {boolean} 是有拥有权限*/const getwxsetting = key => { if (typeof key === 'string' && !authlist[key]) return false return new promise(function (resolve) { wx.getsetting({ success: async res => { var result = res.authsetting // 用户拒绝过 if (result[`scope.${key}`] === false) { // 引导去授权页 _showmodal(key).then(() => { resolve() }) } else { // 已授权,或者还未授权 resolve() } } }) })}/*** @description: 引导去授权设置页面* @param {string} 权限名称* @return {boolean} 是有拥有权限*/const _showmodal = key => { console.log(authlist[key].authcontent) return new promise(function (resolve) { wx.showmodal({ title: authlist[key].authtitle, content: authlist[key].authcontent, success: function (res) { if (res.confirm) { wx.opensetting({ success: async dataau => { // 异步,进入授权页面授权后返回判断 if (dataau.authsetting[`scope.${key}`] === true) { wx.showtoast({ title: '授权成功', icon: 'success', duration: 1000 }) resolve() } else { wx.showtoast({ title: '授权失败', icon: 'none', duration: 1000 }) } } }) // 用户点击取消 } else if (res.cancel) { wx.showtoast({ title: '授权失败', icon: 'none', duration: 1000 }) } } }) })}module.exports = { getwxsetting}复制代码
页面js引入auth.js 传入,调用 getwxsetting 方法传入已经在auth.js中定义authlist 对应的属性名
//index.js//获取应用实例const app = getapp()const wxapi = require('../../utils/auth.js')page({ data: { }, // 打开地图 openmap: function() { wxapi.getwxsetting('userlocation').then(()=>{ // 已经授权或还未授权,下面的代码也可以根据需求提取到公共文件中 wx.getlocation({ type: 'wgs84', success: res => { wx.openlocation({ latitude: res.latitude, longitude: res.longitude, }) }, fail: err => { wx.showtoast({ title: '检查手机定位权限', icon: 'none', duration: 2000 }) } }) }) }, // 保存到相册 writephotosalbum: function() { wxapi.getwxsetting('writephotosalbum').then(()=>{ // 已经授权或还未授权,下面的代码也可以根据需求提取到公共文件中 wx.downloadfile({ url: 'https://imgs.solui.cn/avatar.png', success: function(res) { wx.saveimagetophotosalbum({ filepath: res.tempfilepath, success: function(res) { wx.showtoast({ title: '保存成功', icon:'none' }) }, fail: function(err) { wx.showtoast({ title: '保存失败', icon:'none' }) } }) } }) }) }, onload: function () { },})复制代码
然后就可以进行授权后的操作了,这里的 wx.getlocation 也可以提取公共文件,这里就不再赘述了。
想了解更多编程学习,敬请关注php培训栏目!
以上就是小程序获取用户位置授权的完美讲述的详细内容。