在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
//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; } } })
|
请发表评论