示例工程:formik-09x-component-lifecycle-events-example
核心文件:index.js
Formik大部分示例工程中都使用了极其方式创建Formik表单组件,本示例中则使用了复杂(或者说典型)方式创建一个Formik表单组件,即使用其继承自React.Component组件,从而展示有关生命周期事件的基本使用。但是,也比较简单,只涉及到了两个事件:
但是,这个示例中使用的componentWillReceiveProps事件在最新的React中已经过时。引用一个老外的话说是:
This lifecycle, however, is on the deprecation path; it will stop working as-named in React 17: https://reactjs.org/docs/react-component.html#unsafe_componentwillreceiveprops
Given that, we should provide a more future-friendly solution for listening for shallow route changes. Perhaps adding a popstate listener in componentDidMount. If that seems like the best option I can add it to docs, but opening this ticket for discussion/tracking.
现在,在最新版本React环境下需要使用UNSAFE_componentWillReceiveProps()来代替。
另外:在新版本中,官方明确指出使用上述事件容易导致一些复杂BUG的出现,所以官方建议使用事件来代替。另外,还有如下建议:
Note:
Using this lifecycle method often leads to bugs and inconsistencies, and for that reason it is going to be deprecated in the future.
If you need to perform a side effect (for example, data fetching or an animation) in response to a change in props, use componentDidUpdate lifecycle instead.
For other use cases, follow the recommendations in this blog post about derived state.
If you used componentWillReceiveProps for re-computing some data only when a prop changes, use a memoization helper instead.
If you used componentWillReceiveProps to “reset” some state when a prop changes, consider either making a component fully controlled or fully uncontrolled with a key instead.
In very rare cases, you might want to use the getDerivedStateFromProps lifecycle as a last resort.
1,https://github.com/zeit/next.js/issues/4154
2,https://reactjs.org/docs/react-component.html#unsafe_componentwillreceiveprops
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。