1 Star 0 Fork 150

凤翼天翔/winxin-app-watch-life.net

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
jianbo 提交于 2021-01-06 11:08 . 更新版权信息
/*
*
* 微慕小程序开源版
* author: jianbo
* organization: 微慕 www.minapper.com
* github: https://github.com/iamxjb/winxin-app-watch-life.net
* 技术支持微信号:iamxjb
* Copyright (c) 2017 微慕 https://www.minapper.com All rights reserved.
*
*/
App({
onLaunch: function () {
//调用API从本地缓存中获取数据
var logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// 小程序主动更新
this.updateManager();
},
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)
}
})
}
})
}
},/*小程序主动更新
*/
updateManager() {
if (!wx.canIUse('getUpdateManager')) {
return false;
}
const updateManager = wx.getUpdateManager();
updateManager.onCheckForUpdate(function (res) {
});
updateManager.onUpdateReady(function () {
wx.showModal({
title: '有新版本',
content: '新版本已经准备好,即将重启',
showCancel: false,
success(res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
});
});
updateManager.onUpdateFailed(function () {
wx.showModal({
title: '更新提示',
content: '新版本下载失败',
showCancel: false
})
});
},
globalData: {
userInfo: null,
openid: '',
isGetUserInfo: false,
isGetOpenid: false
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
微信
1
https://gitee.com/feitianyiren_admin/winxin-app-watch-life.net.git
git@gitee.com:feitianyiren_admin/winxin-app-watch-life.net.git
feitianyiren_admin
winxin-app-watch-life.net
winxin-app-watch-life.net
master

搜索帮助