本篇文章帶給大家的內容是關於小程式引導使用者授權的思路及專案實現方法(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
用戶資訊授權
對於小程式未授權的用戶,官方取消wx.getUserInfo方法的直接調用,首次授權必須主動觸發自訂按鈕,才可調起官方授權元件可以取得的資訊有:暱稱、頭像、性別、國家、省份、城市、性別、語言
1、wx.getSetting查看是否授權
2、已授權使用wx.getUserInfo獲取用戶信息,保存
3、未授權顯示帶有button的自定義頁面,bindGetUserInfo會返回用戶信息,該按鈕會調用微信官方授權
<button open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo">允许用户授权</button>
4、授權完成保存使用者資訊
1、app.js----我放在登陸方法之後
// 查看是否授权,保存授权状态 wx.getSetting({ success: function(res) { if (res.authSetting['scope.userInfo']) { wx.setStorageSync('isAuthorize', 'true'); wx.getUserInfo({ success: function(res) { wx.setStorageSync('userInfo', res.rawData); } }) } else { wx.setStorageSync('isAuthorize', 'false'); } } })
2、main .wxml------專案主頁
<!-- 小程序授权组件 --> <authorize id="authorize"></authorize>
3、main.js------onload中進行判斷是否要顯示自訂的按鈕
// 已授权隐藏弹框,未授权显示弹框 this.authorize = this.selectComponent("#authorize"); if (wx.getStorageSync('isAuthorize')=='true'){ this.authorize.hideDialog() }
4、main .json-----主頁配置參數
"usingComponents": { "authorize": "自定义授权组件的路径" }
5、authorize.js------自訂帶有button的頁面/彈出式元件autiorize,這裡只貼出js部分
/*authorize.js*/ Component({ options: { multipleSlots: true }, data: { isHide: false, canIUse: wx.canIUse('button.open-type.getUserInfo') }, methods: { //隐藏弹框 hideDialog() { this.setData({ isHide: true }) }, // 授权信息保存 bindGetUserInfo(e){ wx.setStorageSync('isAuthorize', 'true'); wx.setStorageSync('userInfo', JSON.stringify(e.detail.userInfo)); this.hideDialog() } } })
這樣整個授權就完成了!
#以上是小程式引導使用者授權的想法及專案實作方法(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!