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

前端 未结 21 1259
说谎
说谎 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 18:47

    According to https://reacttraining.com/react-router/web/api/history

    For "react-router-dom": "^5.1.2",,

    const { history } = this.props;
    
    
    YourComponent.propTypes = {
      history: PropTypes.shape({
        goBack: PropTypes.func.isRequired,
      }).isRequired,
    };
    

提交回复
热议问题