#TIL13 componentWillUnmount, clearInterval
1272 ワード
componentWillUnmount() {
clearInterval(this.autoCarousel());
}
componentWillUnmount
componentWillUnmount()
は、構成部品がアンインストールされる前に呼び出される.このメソッドでは、タイマの削除、ネットワークリクエストのキャンセル、 componentDidMount()
で作成したサブスクリプションのキャンセルなど、必要なすべてのパージ操作を実行します.コンポーネントはレンダリングされなくなりました.
componentWillUnmount()
内から setState()
を呼び出すことはできません. 構成部品インスタンスがアンインストールされても、再マウントは絶対に行われません.clearInterval
clearInterval
setInterval反復関数を使用して停止します.React.Component - React
Reference
この問題について(#TIL13 componentWillUnmount, clearInterval), 我々は、より多くの情報をここで見つけました https://velog.io/@hereizhere/TIL13-componentWillUnmount-clearIntervalテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol