我正在尝试修改 react-router-redux 的示例代码。 https://github.com/rackt/react-router-redux/blob/master/examples/basic/components/Home.js
这是我的 Home.js
class Home extends Component {
onSubmit(props) {
this.props.routeActions.push('/foo');
}
}
我也有一个 mapDispatchToProps 。
function mapDispatchToProps(dispatch){
return bindActionCreators({ routeActions },dispatch);
}
当我调用 onSubmit 函数时,出现错误
Uncaught TypeError: this.props.routeActions.push is not a function
如果我在 onSubmit 中删除 this.props,则 URL 中的密钥已更改,但仍位于同一页面上。从localhost:8080/#/?_k=iwio19
到localhost:8080/#/?_k=ldn1ew
谁知道怎么修它?欣赏它。