小程序模板:专业的小程序模板与静态模板分享平台
小程序
教程
搜索
当前位置 : 首页> 小程序教程> 微信小程序页面其它地方调用onLoad函数

微信小程序页面其它地方调用onLoad函数

在同一页面中的其他地方调用onLoad,具体操作如下:

1.可以先在onLoad里设置options的值

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


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

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


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

举个例子:

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


其他的方法

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


联系客服 意见反馈

签到成功!

已连续签到1天,签到3天将获得积分VIP1天

知道了