1
0
Fork 0
Agora-Miniapp-Tutorial/app.js

23 lines
392 B
JavaScript
Raw Normal View History

2022-06-06 11:51:36 +08:00
const Utils = require("./utils/util.js");
//app.js
App({
onLaunch: function () {
// 展示本地存储能力
Utils.checkSystemInfo(this);
wx.authorize({
scope: 'scope.record',
});
// 登录
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId
}
})
},
globalData: {
userInfo: null
}
})