gpt4 book ai didi

reactjs - 如何使用react-router-redux的routeActions?

转载 作者:行者123 更新时间:2023-12-03 13:25:15 24 4
gpt4 key购买 nike

我正在尝试修改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=iwio19localhost:8080/#/?_k=ldn1ew

有人知道怎么解决吗?欣赏它。

最佳答案

我不认为 routeActions 是作为 props 传递的。你想做的是这样的:

import { routeActions } from 'react-router-redux'

this.props.dispatch(routeActions.push('/foo'));

关于reactjs - 如何使用react-router-redux的routeActions?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35196873/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com