react中触发事件实现路由跳转
Posted taxun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react中触发事件实现路由跳转相关的知识,希望对你有一定的参考价值。
import {withRouter} from ‘react-router-dom‘;
并切在导出时候用这个方法包裹住
export default connect(function (state, props){ return state; }, { addItem(item){ return { type: ADD_ITEM, item } } })(withRouter(Panel));
上面代码主要是结合redux,connect和withRouter谁包住谁都是可以的如果不用redux的话
export default (withRouter(Panel));
这个时候this.props下面就会有history对象了 大家可以自己打印一下
我们通常会用其中的两个方法 .push(会保存历史记录) 与 .replace(替换的意思,不会保存历史记录)
this.props.history.replace(‘/‘);
这样就可以通过事件来进行路由跳转了
以上是关于react中触发事件实现路由跳转的主要内容,如果未能解决你的问题,请参考以下文章