history library reference
5 February 2023 (Updated 5 February 2023)
In a nutshell
The history library provides an API managing session history in JavaScript environments. It abstracts away differences between different environments and provides a minimal API for:
- Managing the history stack
- Navigating history
- Persisting state between sessions
The basic usage is like this:
The history.location
property
The location
object implements a subset of the window.location
interface and has the following properties:
location.pathname
– The path of the URLlocation.search
– The URL query stringlocation.hash
– The URL hash fragmentlocation.state
– Some extra state for this location that doesn’t reside in the URL (could benull
).location.key
– A unique string that uniquely identifies the current location.
Recipes
Listen for changes to the browser history
Sources
Tagged:
React Router
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment