Попытка выяснить, как я могу вернуться на предыдущую страницу. Я использую [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;