React Router V4:如何以编程方式导航到上次访问的页面

时间:2017-10-24 13:40:36

标签: reactjs react-router react-router-v4

使用react-router V4,如何以编程方式导航到上次访问过的页面?

下面的代码听起来不错吗?

this.props.history.push(this.props.history[this.props.history.length - 1])

1 个答案:

答案 0 :(得分:1)

使用此:

this.props.history.goBack();

您还可以使用go(n)

this.props.history.go(-1);

检查DOC