3 Star 0 Fork 2

anzhusen/IsearchU

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 2.75 KB
一键复制 编辑 原始数据 按行查看 历史
anzhusen 提交于 2020-05-08 09:08 . anan_modify_third
//app.js
App({
onLaunch: function () {
wx.cloud.init({
env: "defend-grgsv",
traceUser: true,
})
// 展示本地存储能力
var logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// 登录
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId
}
})
// 获取用户信息
wx.getSetting({
success: res => {
if (res.authSetting['scope.userInfo']) {
// 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
wx.getUserInfo({
success: res => {
// 可以将 res 发送给后台解码出 unionId
this.globalData.userInfo = res.userInfo
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
if (this.userInfoReadyCallback) {
this.userInfoReadyCallback(res)
}
}
})
}
}
})
//自动更新的设置 对已经上线了的程序
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
wx.showModal({
title: '更新提示',
content: '新版本下载失败',
showCancel: false
})
})
let id = '0' //首先给个默认值 否则报错
wx.getStorageSync(id)
console.log(wx.getStorageSync(id))
},
globalData: {
id : ''
},
globalData: {
_id:null,//用户id
userInfo: null, //不用管它,自动有的
head_img:"/images/_head.png",//头像
nickname:"长大学子",//昵称
academy:100, //表示选择学院
userOpenid:null, //用户openid
login_hidden:false, //登陆按钮隐藏
isManager:false,
},
previewImage: function (e) {
// console.log("e",e)
var url = e.currentTarget.dataset.url
var urls = e.currentTarget.dataset.urls
wx.previewImage({
current: url, // 当前显示图片的http链接
urls: urls // 需要预览的图片http链接列表
})
},
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/anzhusen/IsearchU.git
[email protected]:anzhusen/IsearchU.git
anzhusen
IsearchU
IsearchU
master

搜索帮助