blog
blog copied to clipboard
react有哪些生命周期,哪些生命周期里面可以setState
挂载
constructor
static getDerivedStateFromProps
render
conponentDidMount 可以
渲染
static getDerivedStateFromProps
shouldComponentUpdate
render
getSnapShotBeforeUpdate
componentDidUpdate 可以
卸载
conponentWillUnmount
错误处理
getDerivedStateFromError
componentDidCatch 可以