Możesz skorzystać z history.listen()
funkcji, próbując wykryć zmianę trasy. Biorąc pod uwagę, że używasz react-router v4
, zapakuj swój komponent za pomocą withRouter
HOC, aby uzyskać dostęp do właściwości history
.
history.listen()
zwraca unlisten
funkcję. Używałbyś tego unregister
ze słuchania.
Możesz skonfigurować swoje trasy, takie jak
index.js
ReactDOM.render(
<BrowserRouter>
<AppContainer>
<Route exact path="/" Component={...} />
<Route exact path="/Home" Component={...} />
</AppContainer>
</BrowserRouter>,
document.getElementById('root')
);
a następnie w AppContainer.js
class App extends Component {
componentWillMount() {
this.unlisten = this.props.history.listen((location, action) => {
console.log("on route change");
});
}
componentWillUnmount() {
this.unlisten();
}
render() {
return (
<div>{this.props.children}</div>
);
}
}
export default withRouter(App);
Z dokumentów historii :
Możesz nasłuchiwać zmian w bieżącej lokalizacji za pomocą
history.listen
:
history.listen((location, action) => {
console.log(`The current URL is ${location.pathname}${location.search}${location.hash}`)
console.log(`The last navigation action was ${action}`)
})
Obiekt location implementuje podzbiór interfejsu window.location, w tym:
**location.pathname** - The path of the URL
**location.search** - The URL query string
**location.hash** - The URL hash fragment
Lokalizacje mogą mieć również następujące właściwości:
location.state - Dodatkowy stan dla tej lokalizacji, który nie znajduje się w adresie URL (obsługiwane w createBrowserHistory
i
createMemoryHistory
)
location.key
- Unikalny ciąg reprezentujący tę lokalizację (obsługiwany w createBrowserHistory
i createMemoryHistory
)
Akcja zależy od PUSH, REPLACE, or POP
tego, w jaki sposób użytkownik dotarł do bieżącego adresu URL.
Kiedy używasz React-router v3, możesz skorzystać history.listen()
z history
pakietu z pakietu, jak wspomniano powyżej, lub możesz również skorzystaćbrowserHistory.listen()
Możesz konfigurować i używać swoich tras, takich jak
import {browserHistory} from 'react-router';
class App extends React.Component {
componentDidMount() {
this.unlisten = browserHistory.listen( location => {
console.log('route changes');
});
}
componentWillUnmount() {
this.unlisten();
}
render() {
return (
<Route path="/" onChange={yourHandler} component={AppContainer}>
<IndexRoute component={StaticContainer} />
<Route path="/a" component={ContainerA} />
<Route path="/b" component={ContainerB} />
</Route>
)
}
}