We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My URL have random characters in the end http://localhost:9005/#/**?_k=yl5yqr** or http://localhost:9005/#/test**?_k=y9id0l**
Heres the file for Router,
'use strict'; import React from 'react'; import {Router, Route} from 'react-router'; import App from './app'; import Homepage from './components/homepage'; import Customers from './components/customers'; import Test from './components/test'; React.render(( <Router> <Route component={App}> <Route path="/" component={Homepage}/> <Route path="test" component={Test}/> </Route> </Router> ), document.querySelector('#app'));
How do I get rid of these? I'm using react-router 1.0.0-rc1
The text was updated successfully, but these errors were encountered:
Maybe that is because you use hash location, which holds state in url.
Sorry, something went wrong.
Here an explanation: https://github.com/rackt/react-router/blob/8ef625e8fa7c41dda0f3d1d68a10b74bd93a4101/docs/guides/basics/Histories.md#what-is-that-_kckuvup-junk-in-the-url
This was changed between 0.13.3 and 1.0.0-rc1.
There's also this thread: #1967 (comment)
I have not been able to figure why this has been added or how to get rid of this parameter in the url, and how that would affect my application.
No branches or pull requests
My URL have random characters in the end http://localhost:9005/#/**?_k=yl5yqr** or http://localhost:9005/#/test**?_k=y9id0l**
Heres the file for Router,
How do I get rid of these? I'm using react-router 1.0.0-rc1
The text was updated successfully, but these errors were encountered: