美文网首页
微信小程序onLaunch修改globalData的值

微信小程序onLaunch修改globalData的值

作者: LI_4058 | 来源:发表于2019-01-23 09:38 被阅读0次
    //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;
        }
      }
    })
    

    相关文章

      网友评论

          本文标题:微信小程序onLaunch修改globalData的值

          本文链接:https://www.haomeiwen.com/subject/dltjjqtx.html