我在componentDidMount中有以下自动运行功能:
componentDidMount() {
this.autoUpdate = autorun(() => {
this.setState({
rows: generateRows(this.props.data)
})
})
}
问题是当组件未挂载时,另一个组件会更改this.props.data - 因此我在未安装的组件上收到.setState警告。
所以我想在组件卸载后删除自动运行。
我尝试过:
componentWillUnmount() {
this.autoUpdate = null
}
但是自动运行功能仍会触发。一旦组件不再安装,有没有办法取消mobx自动运行?
答案 0 :(得分:6)
autorun
会返回您需要调用以取消它的处理程序函数。
class ExampleComponent extends Component {
componentDidMount() {
this.autoUpdateDisposer = autorun(() => {
this.setState({
rows: generateRows(this.props.data)
});
});
}
componentWillUnmount() {
this.autoUpdateDisposer();
}
render() {
// ...
}
}