要保持頁面狀態(tài),可以使用以下方法:
<Route>
組件的 exact
屬性來確保只有當?shù)刂吠耆ヅ鋾r,才會渲染該組件。這樣可以防止其他頁面的組件被重新渲染。<Route exact path="/" component={Home} />
<Switch>
組件將路由包裹在其中,這樣只有第一個匹配的路由會被渲染,其他的路由將會被忽略。<Switch>
<Route exact path="/" component={Home} />
<Route path="/about" component={About} />
<Route path="/contact" component={Contact} />
</Switch>
const MyContext = React.createContext();
class MyProvider extends React.Component {
state = {
// 保存需要保持的狀態(tài)數(shù)據(jù)
};
render() {
return (
<MyContext.Provider value={this.state}>
{this.props.children}
</MyContext.Provider>
);
}
}
class MyComponent extends React.Component {
render() {
return (
<MyContext.Consumer>
{context => (
// 使用 context 中的狀態(tài)數(shù)據(jù)
)}
</MyContext.Consumer>
);
}
}
通過上述方法,可以保持頁面狀態(tài),即使進行了回退操作。