欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

React中子组件无法进行路由跳转的问题

程序员文章站 2022-03-04 10:45:50
...

一把辛酸泪,框架内部皆有坑。

1、子组件引入withRouter
2、跳转路由this.props.history.push(’/’);
3、加入: export default withRouter(Title);

import {withRouter} from "react-router-dom";
class Title extends Component {
outLogin = () => {     
 //跳转路由     
  this.props.history.push('/');   
   }
   }
   export default withRouter(Title);

拿走,不谢