合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
~~~ onLoad: function (options) { this.userAuthorized() }, userAuthorized() { /* 判断用户是否授权 */ wx.getSetting({ success: res => { /* 为真则表示授权 */ if (res.authSetting["scope.userInfo"]) { wx.getUserInfo({ success: res => { this.setData({ userInfo: res.userInfo, authorized: true }) } }) } else { console.log('err'); } } }); }, ~~~