//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; } } })