1 Star 1 Fork 1

夹心海苔/wxapplet-canvas-demo

forked from xqlu/wxapplet-canvas-demo 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
app.js 540 Bytes
Copy Edit Raw Blame History
jiangxiyang authored 2016-11-30 21:05 . new page: list
//app.js
App({
getUserInfo: function (cb) {
var that = this
if (this.globalData.userInfo) {
typeof cb == "function" && cb(this.globalData.userInfo)
} else {
//调用登录接口
wx.login({
success: function () {
wx.getUserInfo({
success: function (res) {
that.globalData.userInfo = res.userInfo
typeof cb == "function" && cb(that.globalData.userInfo)
}
})
}
})
}
},
globalData: {
userInfo: null
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/sun-jxing/wxapplet-canvas-demo.git
git@gitee.com:sun-jxing/wxapplet-canvas-demo.git
sun-jxing
wxapplet-canvas-demo
wxapplet-canvas-demo
master

Search

0d507c66 1850385 C8b1a773 1850385