收藏
回答

请问怎么样才能把其他页面js里面的一个所需要的值存储到全局变量中?

请问怎么样才能把其他页面js里面的一个所需要的值存储到全局变量中,求各位大佬告知

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

4 个回答

  • dreamhunter
    dreamhunter
    2021-08-24

    1.全局对象globalData

    2.缓存wx.setStorageSync


    2021-08-24
    有用
    回复
  • Gavin
    Gavin
    2021-08-24

    app.globalData虽然可以实现但是有点小坑,具体用过之后你就知道了,推荐使用状态管理器或者缓存

    2021-08-24
    有用
    回复
  • ZZ
    ZZ
    2021-08-24
    app.js:
    globalData: {
      id: 123
    }
    app.globalData.id
    
    index.js
    const app = getApp()
    app.globalData.id
    
    2021-08-24
    有用
    回复
  • 微喵网络
    微喵网络
    2021-08-24
    app.globalData
    
    2021-08-24
    有用
    回复
登录 后发表内容