react button onClick redirect page

前端 未结 13 2271
我在风中等你
我在风中等你 2020-12-02 15:19

I am working on web application using React and bootstrap. When it comes to applying button onClick, it takes me hard time to let my page being redirect to another. if afte

13条回答
  •  心在旅途
    2020-12-02 15:38

    A very simple way to do this is by the following:

    onClick={this.fun.bind(this)}
    

    and for the function:

    fun() {
      this.props.history.push("/Home");
    }
    

    finlay you need to import withRouter:

    import { withRouter } from 'react-router-dom';
    

    and export it as:

    export default withRouter (comp_name);
    

提交回复
热议问题