admin管理员组文章数量:1340748
I have an app using react-router-v4. I have a matching page which, unless you are logged in, you can't access. When a user is not logged in and tries to go to /match
they get redirected to /login
. My issue is that when the user is redirected to /login
the URL stays as /match. This is causing issues elsewhere in my code. How can I get React-Router to update the URL when the user is redirected to /login
? I am redirecting the page from my switch inside App.js. Here is an example of what my code looks like:
<Route
path='/match'
ponent= {
() => {
if (this.state.auth) return <HomePage />;
else return <LoginPage />;
}
}
/>
TL;DR
How can I get the URL to change to /login
if the user isn't logged in when trying to access /match
.
I have an app using react-router-v4. I have a matching page which, unless you are logged in, you can't access. When a user is not logged in and tries to go to /match
they get redirected to /login
. My issue is that when the user is redirected to /login
the URL stays as /match. This is causing issues elsewhere in my code. How can I get React-Router to update the URL when the user is redirected to /login
? I am redirecting the page from my switch inside App.js. Here is an example of what my code looks like:
<Route
path='/match'
ponent= {
() => {
if (this.state.auth) return <HomePage />;
else return <LoginPage />;
}
}
/>
TL;DR
How can I get the URL to change to /login
if the user isn't logged in when trying to access /match
.
- Possible duplicate of Redirect to previous path on login - React Router v4 – Ragul Parani Commented Jul 6, 2018 at 8:22
- 1 @RagulParani Thanks, I have looked at the answer provided to that question and tried to implement it, however I am getting the error: 'Private Route is not defined'. I am using jsx, not tsx, so I tried taking out the const when adding the code to my file, which isn't working. Not sure how else to put that code into my file? – Sophia Price Commented Jul 6, 2018 at 9:00
3 Answers
Reset to default 5You probably have a little miss conception on how React Router works. In your example React Router works just as it should since you are just rendering ponents.
You should use React Router's <Redirect />
-ponent for redirecting user to new url.
You could achieve your desired behaviour with this example code.
<Route
path='/match'
render={
() => {
if(this.state.auth) return <HomePage />
return <Redirect to="/login" />
}
}
/>
<Route match="login" ponent={Login} />
You can also achieve same kind of behaviour inside ponent programmatically with using React Router's provided prop props.history.push('/login')
inside your ponent.
You could have a separate route for /login
, and use the Redirect ponent on your /match
route if the user is not logged in.
<Route
path='/match'
render={
() => {
if (this.state.auth) return <HomePage />;
else return <Redirect to='/login'/>;
}
}
/>
<Route
path='/login'
render={LoginPage}
/>
The logic for redirect should be part of ponent itself, not routes configuration. To make it reusable create HOC with redirect logic, and then just wrap paths that should be protected in routes config.
本文标签: javascriptReactRouter not updating URL on redirectStack Overflow
版权声明:本文标题:javascript - React-Router not updating URL on redirect - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743639626a2514490.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论