app.js
onLaunch: function () {
if (!wx.cloud) {
console.error('请使用 2.2.3 或以上的基础库以使用云能力')
} else {
//云开发初始化
wx.cloud.init({
env: '',
traceUser: true
})
//const { OPENID } = cloud.getWXContext();
}
this.globalData = { serverDate: this.getserverDate()}
}
//获取服务器时间
getserverDate: function () {
wx.cloud.callFunction({
name: 'getdate',
success: function (res) {
getApp().globalData.serverDate = res.result
}
})
},
onShow: function () {
let that = this;
wx.getSystemInfo({//做iponeX的适配
success: res => {
console.log('手机信息res:' + res.model)
let modelmes = res.model;
if (modelmes.search('iPhone X') != -1) {
that.globalData.isIphoneX = true
}
}
})
第二个页面
pages上面引入
const app = getApp();
我直接挂载第二个页面,服务器时间不能从全局变量获取到,util.formatTime(new Date(app.globalData.serverDate))显示为NAN,如果是从第一个页面跳转第二页面显示都正常