app.js定义了globalData,但是在其他页面为什么获取数据是undefined?
// app.js
App({
globalData:{
srceenWidth:375,
screenHeight:667
},
onLaunch() {
// 1.获取设备信息
wx.getSystemInfo({
success: (res) => {
console.log(res);
this.globalData.srceenWidth = res.screenWidth
this.globalData.screenHeight = res.screenHeight
},
})
}
})
[图片] [图片] [图片] [图片]