React中,fetch网络数据应该在哪个生命周期里?

React三个比较重要的生命周期:
componentDidMount
componentDidUpdate
componentWillUnmount

请问
1、还有其他重要的生命周期吗?
2、fetch网络数据应该在哪个生命周期里?

阅读 2.3k
4 个回答

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.

咋回事,2023年还有必要用class写法吗?公司强迫的?

现在一般都是使用函数式组件吧

useEffect(() => {
 init()
}, [])

function init() {
// 请求数据
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏