React三个比较重要的生命周期:
componentDidMount
componentDidUpdate
componentWillUnmount
请问
1、还有其他重要的生命周期吗?
2、fetch网络数据应该在哪个生命周期里?
React三个比较重要的生命周期:
componentDidMount
componentDidUpdate
componentWillUnmount
请问
1、还有其他重要的生命周期吗?
2、fetch网络数据应该在哪个生命周期里?
fetch 网络数据一般在 componentDidMount 这个生命周期里。参考 React 的 官方文档
componentDidMount()
is invoked immediately after a component is mounted (inserted into the tree). Initialization that requires DOM nodes should go here. If you need to load data from a remote endpoint, this is a good place to instantiate the network request.
8 回答5k 阅读✓ 已解决
6 回答3.8k 阅读✓ 已解决
6 回答2.6k 阅读
9 回答2.5k 阅读
5 回答6.6k 阅读✓ 已解决
2 回答2.2k 阅读✓ 已解决
3 回答2.6k 阅读✓ 已解决
生命周期的话,直接看文档就好了呀 👉 Component – React
发起数据请求的话在
componentDidMount
里面发起请求就好了,但是在当前React主流环境下的开发模式下好像都不再强调生命周期了。另外也可以看社区大佬的一片相关文章 👉 官方答:在React18中请求数据的正确姿势(其他框架也适用)