评论

问题记录01

我的日记

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是定义时的对象

点赞 1
收藏
评论

1 个评论

  • I-S
    I-S
    2019-03-08

    这不就是箭头函数么0.0主要是this指向问题呗

    2019-03-08
    赞同 1
    回复
登录 后发表内容