gpt4 book ai didi

reactjs - 是否总是在 componentWillUnmount 之前调用 componentDidMount?

转载 作者:行者123 更新时间:2023-12-03 20:48:08 25 4
gpt4 key购买 nike

是否保证componentDidMount生命周期方法将始终在 componentWillUnmount 之前执行(并完成) ?
例如,在我的 componentDidMount我正在注册订阅的方法:

componentDidMount() {
this.unsubscribe = subscribe();
}

componentWillUnmount() {
this.unsubscribe();
}
componentDidMount不保证在 componentWillUnmount 之前执行和完成然后 this.unsubscribe可能是 undefined并尝试调用它会引发运行时错误。

最佳答案

React 类组件文档关于 componentDidMount生命周期方法( https://reactjs.org/docs/react-component.html#componentdidmount )指出:This is a good place to set up any subscriptions. If you do that, don’t forget to unsubscribe in componentWillUnmount().基于此,我可以保证 componentDidMount将始终在 componentWillUnmount 之前执行,否则大多数取消订阅都会引发您提到的错误。

关于reactjs - 是否总是在 componentWillUnmount 之前调用 componentDidMount?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64592564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com