È possibile utilizzare la history.listen()
funzione quando si cerca di rilevare il cambio di percorso. Considerando che stai usando react-router v4
, avvolgi il tuo componente con withRouter
HOC per ottenere l'accesso history
all'elica.
history.listen()
restituisce una unlisten
funzione. Lo useresti per unregister
ascoltare.
Puoi configurare i tuoi percorsi come
index.js
ReactDOM.render(
<BrowserRouter>
<AppContainer>
<Route exact path="/" Component={...} />
<Route exact path="/Home" Component={...} />
</AppContainer>
</BrowserRouter>,
document.getElementById('root')
);
e poi in 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);
Dai documenti di storia :
Puoi ascoltare le modifiche alla posizione corrente utilizzando
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}`)
})
L'oggetto location implementa un sottoinsieme dell'interfaccia window.location, tra cui:
**location.pathname** - The path of the URL
**location.search** - The URL query string
**location.hash** - The URL hash fragment
Le posizioni possono anche avere le seguenti proprietà:
location.state - Qualche stato extra per questa posizione che non risiede nell'URL (supportato in createBrowserHistory
e
createMemoryHistory
)
location.key
- Una stringa univoca che rappresenta questa posizione (supportata in createBrowserHistory
e createMemoryHistory
)
L'azione PUSH, REPLACE, or POP
dipende da come l'utente è arrivato all'URL corrente.
Quando si utilizza react-router v3 è possibile utilizzare history.listen()
dal history
pacchetto come menzionato sopra oppure è anche possibile utilizzarlobrowserHistory.listen()
Puoi configurare e utilizzare i tuoi percorsi come
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>
)
}
}