Lifecycle in Class Component

In class components, lifecycle methods are special functions that React automatically calls at different phases of a component’s life.

Lifecycle Phases

PhaseExplanationLifecycle methods
MountingThe component is created and inserted into the DOM.constructor(), render(), componentDidMount()
UpdatingThe component is re-rendered due to changes in props or state.shouldComponentUpdate(), render(), componentDidUpdate()
UnmountingThe component is removed from the DOM.componentWillUnmount()
Error Handling (React 16+)Catching errors in child components.componentDidCatch(), getDerivedStateFromError()

Bình luận

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *