abortController = new AbortController(); componentDidMount() { this.fetchNews(); } await fetch(url, {signal: this.abortController.signal}) .then(response => response.json()) .then(responseJson => { componentWillUnmount() { this.abortController.abort(); }
Обсуждают сегодня