react-router go back a page how do you configure history?

前端 未结 21 1326
说谎
说谎 2020-11-30 18:30

Can anyone please tell me how I can go back to the previous page rather than a specific route?

When using this code:

var BackButton = React.createCla         


        
21条回答
  •  余生分开走
    2020-11-30 19:01

    1. import withRouter

      import { withRouter } from 'react-router-dom';
      
    2. Export your component as:

      export withRouter(nameofcomponent) 
      
    3. Example, on button click, call goBack:

      
      

    Tested on react-router-dom v4.3

提交回复
热议问题