微信小程序-组件生命周期方法

2023-05-22 08:27:41 浏览数 (1)

正如官方显示组件的生命周期中常用的如下:

!> 组件的生命周期方法编写的位置与页面的生命周期是不一样的,组件生命周期声明是写在 lifetimes 当中

官方文档:https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/lifetimes.html

示例

监听组件生命周期

代码语言:javascript复制
// components/c-test/c-test.js
Component({
  // 监听当前组件的生命周期
  lifetimes: {
    created() {
      console.log("created 组件被创建出来了");
    },
    ready() {
      console.log("ready 组件被附加到页面的节点树上了");
    },
    attached() {
      console.log("attached 组件被显示出来了");
    },
    detached() {
      console.log("detached 组件从页面上被移除了");
    },
  }
});

首页页面使用 c-test 组件:

代码语言:javascript复制
<!--index.wxml-->
<text>首页</text>
<myTest wx:if="{{isShow}}" />
<button bindtap="toggleShow">切换c-test组件显示状态</button>
代码语言:javascript复制
// index.js
Page({
  data: {
    isShow: true
  },
  toggleShow() {
    this.setData({isShow: !this.isShow})
  }
})
代码语言:javascript复制
{
  "usingComponents": {
    "myTest": "/components/c-test/c-test"
  }
}

组件当中监听页面生命周期

代码语言:javascript复制
// components/c-test/c-test.js
Component({
  // 监听当前组件的生命周期
  lifetimes: {
    created() {
      console.log("created 组件被创建出来了");
    },
    ready() {
      console.log("ready 组件被附加到页面的节点树上了");
    },
    attached() {
      console.log("attached 组件被显示出来了");
    },
    detached() {
      console.log("detached 组件从页面上被移除了");
    },
  },
  // 监听挂载到的页面对应的生命周期
  pageLifetimes: {
    hide() {
      console.log("页面被隐藏了");
    },
    show() {
      console.log("页面显示出来了");
    }
  }
});

0 人点赞