企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
~~~ 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'); } } }); }, ~~~