APP.JS内
//获取设备宽高
wx.getSystemInfo({
success:function(res) {
this.globalData.syHeight = res.windowHeight
this.globalData.syWidth = res.windowWidth
},
globalData: {
userInfo: null,
syWidth:null,
syHeight: null
},
//会报错,读取不到globalData
//改成这样就可以了:
//获取设备宽高
wx.getSystemInfo({
success:res =>{
this.globalData.syHeight = res.windowHeight
this.globalData.syWidth = res.windowWidth
},
//function与=>的区别
// function中this是使用时的对象
// =>中的this是定义时的对象
这不就是箭头函数么0.0主要是this指向问题呗