加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
store.js 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
Andcen 提交于 2021-05-07 19:52 . 提交
App({
storeData: {
userInfo: null,
carStore: [],
theme: {
//顶部配色
navigationBarColor: "#df4ecd",
bodyFontColor: "#df4ecd",
},
},
//默认 false,为 true 会无脑更新所有实例
//updateAll: true
onLaunch: function () {
wx.getSetting({
success: res => {
if (res.authSetting['scope.userInfo']) {
// 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
wx.getUserInfo({
success: res => {
// 可以将 res 发送给后台解码出 unionId
// console.log(res.userInfo)
this.storeData.userInfo = res.userInfo
// console.log(this.globalData.userInfo)
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
if (this.userInfoReadyCallback) {
this.userInfoReadyCallback(res)
}
}
})
}
}
})
},
onShow:function(){
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化