Próbuję wymyślić, jak mogę wrócić do poprzedniej strony. ja używam[react-router-v4][1]
Oto kod, który skonfigurowałem na mojej pierwszej stronie docelowej:
<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>
Aby przejść na kolejne strony, po prostu robię:
this.props.history.push('/Page2');
Jak jednak mogę wrócić do poprzedniej strony? Próbowałem kilku rzeczy, takich jak wymienione poniżej, ale bez powodzenia: 1.this.props.history.goBack();
Daje błąd:
TypeError: null nie jest obiektem (ocena „this.props”)
this.context.router.goBack();
Daje błąd:
TypeError: null nie jest obiektem (ocena „this.context”)
this.props.history.push('/');
Daje błąd:
TypeError: null nie jest obiektem (ocena „this.props”)
Umieszczając Page1
kod tutaj poniżej:
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;