小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序第二个页面挂载公众号菜单里面,获取不到app.js里的全局变量,显示为undefined?如果从第一个页面跳转到第二页面时候,可以正常获取全局变量。
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
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,如果是从第一个页面跳转第二页面显示都正常
你在小程序 app.js的onShow里进行 全局变量的赋值
你是不是在第一个页面才对app.js里的全局变量赋值了
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
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,如果是从第一个页面跳转第二页面显示都正常
你在小程序 app.js的onShow里进行 全局变量的赋值
你是不是在第一个页面才对app.js里的全局变量赋值了