微信小程序onLaunch修改globalData的值

//app.js
App({
  onLaunch: function (options) {
    //設置場景值到緩存中:
    //wx.setStorageSync("scene", options.scene);
    //return ;
    this.globalData.scene = options.scene;
  },
  globalData:{
    scene:''
  }
})

 

在頁面中獲取全局變量:緩存

const app = getApp()

Page({
  //進來加載頁面:
  onLoad(opts) {
    var scene = app.globalData.scene;
    }
  }
})
相關文章
相關標籤/搜索