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() {
// 请求数据
}
推荐问题
宣传栏