我在我的反应项目中面临问题,我正在做什么,我在包含两个参数props.history
的{{1}}推送路线,包含一些键和功能的状态传递对象。当我在状态对象中添加一个函数时,它会给我错误。有人可以帮助我摆脱这个问题。
这是我的代码。
(path, State)
注意:当我只传递简单的对象和字符串值时,它工作正常,我得到的值就像const { history } = this.props;
const data= {
index: this.props.index,
detail: this.props.object,
handleSubmit: () => { console.log("i am not passing :(");}
}
history.push('/update-task/${index}', data);
上面的代码正在使用react-router v3但在react-router-dom中无效。