收藏
回答

如何使用Behavior的definitionFilter重写页面生命周期onReady?

 主要代码如下,但似乎不行: 

definitionFilter(defFields) {

    defFields.methods = defFields.methods || {};

    defFields.methods._onReady = defFields.methods.onReady;

    defFields.methods.onReady = function () {

      console.log('come in');

    };

  }


回答关注问题邀请回答
收藏

1 个回答

  • LK
    LK
    2023-07-09

    通过改写页面定义段达到重写页面生命周期的目的,是否可行?如果可行的话,我贴出更详细的代码出来,看看是哪里的问题!

    2023-07-09
    有用
    回复 1
    • LK
      LK
      2023-07-09
      找到问题了,页面配置必须有:
      {
          usingComponents: {}
      }
      2023-07-09
      回复
登录 后发表内容