收藏
回答

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
      },
    })
  }
})


回答关注问题邀请回答
收藏

1 个回答

  • 一笑皆春
    一笑皆春
    2022-10-11

    src和scr,拼错了

    2022-10-11
    有用 2
    回复
登录 后发表内容