在我的组件内
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。由于这个原因,我无法发送此动作。