正确卸载React组件

时间:2017-03-29 15:26:04

标签: javascript reactjs redux react-redux

问题:为什么在组件不再由其父组件呈现后抛出此警告?我是否遗漏了卸载此组件需要做的事情,而不仅仅是过滤作为道具传递给组件层次结构的商店状态?

我已经看到这种情况引发了很多,但解决方案通常涉及从组件中取消订阅redux存储;但是,此组件未连接到商店,只是顶级容器。

  • remove操作只是过滤存储状态以删除负责当前组件的数组元素。
  • refresh操作目前只是子组件中UI动画事件的模拟。
  • 仅在调用Feed操作后移除refresh组件时抛出警告
  

警告:setState(...):只能更新已安装或安装的组件。这通常意味着您在已卸载的组件上调用了setState()。这是一个无操作。请检查Feed组件的代码。

// @flow
// Feed.js

import React, { Component } from 'react'
import type { FeedType, FeedState } from '../../utils/types'
import { remove, refresh } from '../../actions/redux-actions'
import RssEventList from '../containers/RssEventList'

const cardColors: Array<string> = ['red', 'orange', 'olive', 'green', 'blue', 'yellow']

export default class Feed extends Component {
  props: FeedType
  state: FeedState

  constructor(props: *) {
    super(props)

    this.state = {
      reloading: false
    }
  }

  refresh() {
    this.setState({ reloading: true })
    setInterval(() => this.setState({ reloading: false }), 4000)
    this.props.dispatch(refresh(this.props.link))
  }

  remove() {
    this.props.dispatch(remove(this.props.link))
  }

  render() {
    const color: string = cardColors[Math.floor(Math.random() * cardColors.length)]

    return (
      <div className={`ui ${color} card`}>
        <div className="content">
          <div className="ui header">
            {this.props.title}
            <a className="source link" href={this.props.link} target="_blank">
              <i className="linkify right floated icon"></i>
            </a>
          </div>
          <div className="meta">
            {this.props.description}
          </div>
        </div>
        <div className="content">
          <RssEventList reloading={this.state.reloading} events={this.props.feed} />
        </div>
        <div className="extra content">
          <span className="left floated" onClick={() => this.refresh()}>
            <i className="refresh icon"></i>
            Refresh
          </span>
          <span className="right floated" onClick={() => this.remove()}>
            <i className="cancel icon"></i>
            Remove
          </span>
        </div>
      </div>
    )
  }
}

如果有帮助,这是一个组件层次结构图:

App (connected to store)
|- Header
|- FilterBar
|- FeedList
   |- Feed
      |- RssEventList
         |- RssEvent
   |- AddCard

1 个答案:

答案 0 :(得分:1)

问题是,当组件卸载时,您没有在组件上存储间隔以将其删除。因此,即使在卸载组件之后,也将继续调用间隔。您需要使用clearInterval()删除它:

export default class Feed extends Component {
  refresh() {
    this.myInterval = setInterval(() => this.setState({ reloading: false }), 4000)
  }

  componentWillUnmount() {
    clearInterval(this.myInterval);
  }
}