📌  相关文章
📜  取消 componentWillUnmount 方法中的所有 Subscriptions 和 Asyncs,如何? - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:15.753000             🧑  作者: Mango

代码示例1
constructor(props) {
    super(props);

    this._isMounted = false;
// rest of your code
}

componentDidMount() {
    this._isMounted = true;
    this._isMounted && this.getImage(this.props.item.image);