添加其他类字段会引发流类型错误

时间:2018-09-18 10:28:49

标签: javascript reactjs

我试图遵循React docs这样每隔x秒调用一个函数:

componentDidMount () {
  const { dispatch, match } = this.props
  dispatch(loadPipelineExecutions(match.params.pipelineId))
  this.reloadExecutions = setInterval(
    () => dispatch(loadPipelineExecutions(match.params.pipelineId)),
    3000
  )
}

componentWillUnmount () {
  clearInterval(this.reloadExecutions)
}

但是我收到一个流类型错误,说:无法为setInterval(...)分配this.reloadExecutions,因为reloadExecutions中缺少属性TableExecutionsContainer

这是正常的流动行为吗?

0 个答案:

没有答案