page contents

详细解释 React 组件的生命周期方法?

轩辕小不懂 发布于 2022-07-16 14:38
阅读 479
收藏 0
分类:WEB前端开发
3947
Nen
Nen
- 程序员

一些最重要的生命周期方法是:

componentWillMount() – 在渲染之前执行,在客户端和服务器端都会执行。

componentDidMount() – 仅在第一次渲染后在客户端执行。

componentWillReceiveProps() – 当从父类接收到 props 并且在调用另一个渲染器之前调用。

shouldComponentUpdate() – 根据特定条件返回 true 或 false。如果你希望更新组件,请返回true 否则返回 false。默认情况下,它返回 false。

componentWillUpdate() – 在 DOM 中进行渲染之前调用。

componentDidUpdate() – 在渲染发生后立即调用。

componentWillUnmount() – 从 DOM 卸载组件后调用。用于清理内存空间

请先 登录 后评论