我想在我的React应用程序的组件中添加打字效果,而我正在使用setInterval
来做到这一点。一切正常,但出现以下错误:
Warning: Can't perform a React state update on an unmounted component.
This is a no-op, but it indicates a memory leak in your application.
To fix, cancel all subscriptions and asynchronous tasks in the componentWillUnmount method
该函数始于componentDidMount()
,所以我不明白为什么要更新卸载的组件。我尝试在clearInterval()
中添加componentWillUnmount()
,但错误仍然显示。
代码:
componentDidMount = () => {
this.typeText();
}
componentWillUnmount(){
console.log(this.state.intervalId);
clearInterval(this.state.intervalId);
}
typeText = () => {
const sp = (text,key) => <span key={key} style={{whiteSpace: 'pre-line'}}>{text}</span>;
const results = this.state.screenText;
let start = 0;
let cursor = 0;
const intervalId = setInterval(() => {
if (results.length) results.pop();
const str = this.state.text.slice(start,cursor);
const span = sp(str,cursor);
results.push(span);
this.setState({screenText:results});
start = Math.floor((cursor / 80));
cursor += 1;
if (cursor > this.state.text.length) clearInterval(intervalId);
},5);
this.setState({intervalId: intervalId});
console.log(this.state.intervalId);
}
render() {
return <span id="typing"> {this.state.screenText}</span>
}
答案 0 :(得分:2)
我认为您的代码存在问题,就是您正在将intervalId
保存为组件状态。
您可能知道,当您致电setState
时,它会导致rerender
。
您可以将intervalId
保存在class属性中。
请考虑代码中的以下更改:
class MyClsss extends React.component{
intervalId = "";
...
}
this.intervalId = setInterval(...)
clearInterval(this.intervalId);