美文网首页微信小程序开发
页面其它地方调用onLoad函数

页面其它地方调用onLoad函数

作者: 牛哞哞杂记 | 来源:发表于2019-09-25 18:31 被阅读0次

    在同一页面中的其他地方调用onLoad,具体操作如下:
    1.可以先在onLoad里设置options的值

     onLoad: function (options) {
        that.setData({
          pageOption: options
        });
     }
    

    2.在其他地方调用时,可以这样调用

    let that = this;
    that.onLoad(this.data.pageOption);
    

    这样就可以获取到onLoad函数里的值,当然获取其他值也可以使用同样的方法,先在onLoad里设置值,再用 ’this.data.值’ 的办法获取
    举个例子:

    //onLoad
    onLoad: function (options) {
        let that = this;
        that.setData({
          pageOption: options
        });
     },
    

    其他的方法

    init: function () {
        let that = this;
        that.onLoad(this.data.pageOption);
     },
    

    相关文章

      网友评论

        本文标题:页面其它地方调用onLoad函数

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