标签: reactjs react-router react-router-v4
使用react-router V4,如何以编程方式导航到上次访问过的页面?
下面的代码听起来不错吗?
this.props.history.push(this.props.history[this.props.history.length - 1])
答案 0 :(得分:1)
使用此:
this.props.history.goBack();
您还可以使用go(n):
go(n)
this.props.history.go(-1);
检查DOC。