内部组件'dispatch'未定义no-undef错误

时间:2018-03-05 10:25:33

标签: reactjs redux react-router react-redux redux-thunk

在我的组件内

  setDealSizeAndType({ target }){
    this.setState(
      {
      type: target.name
      }, function(){
      dispatch(setTypeAndDealSize(this.state.patientDealSize , this.state.type)
    )
    });
    console.log(this.state.patientDealSize , "abc" , this.state.type);
  }

我收到一个错误错误:'dispatch'没有定义no-undef。由于这个原因,我无法发送此动作。

0 个答案:

没有答案