试图找出如何才能回到上一页。我使用 [react-router-v4][1]
这是我在第一个登陆页面中配置的代码:
<Router>
<div>
<Link to="/"><div className="routerStyle"><Glyphicon glyph="home" /></div></Link>
<Route exact path="/" component={Page1}/>
<Route path="/Page2" component={Page2}/>
<Route path="/Page3" component={Page3}/>
</div>
</Router>
为了转发到后面的页面,我只需要:
this.props.history.push('/Page2');
但是,我怎样才能回到上一页?
尝试了下面提到的一些方法,但是没有成功:
1. this.props.history.goBack();
给出错误:
TypeError: null 不是一个对象(计算‘ this. props’)
this.context.router.goBack();
给出错误:
TypeError: null 不是一个对象(计算‘ this. context’)
this.props.history.push('/');
给出错误:
TypeError: null 不是一个对象(计算‘ this. props’)
在此张贴 Page1
代码如下:
import React, {Component} from 'react';
import {Button} from 'react-bootstrap';
class Page1 extends Component {
constructor(props) {
super(props);
this.handleNext = this.handleNext.bind(this);
}
handleNext() {
this.props.history.push('/page2');
}
handleBack() {
this.props.history.push('/');
}
/*
* Main render method of this class
*/
render() {
return (
<div>
{/* some component code */}
<div className="navigationButtonsLeft">
<Button onClick={this.handleBack} bsStyle="success">< Back</Button>
</div>
<div className="navigationButtonsRight">
<Button onClick={this.handleNext} bsStyle="success">Next ></Button>
</div>
</div>
);
}
export default Page1;