Warning: You tried to redirect to the same route you're currently on: "/home"


react-router-dom 版本4.3.1 配置路由
  
 
 出錯代碼:
  
import {Route, Switch} from 'react-router-dom'
 import { Redirect} from 'react-router'
1 <Redirect from="/" to="/home" />
2 <Route exact path="/login" component={Login}/>
3                 
4 <Home>
5   <Route path="/model" component={Model}/>
6    <Route path="/result" component={Result}/>
7 </Home>

解決方法: 

import {Route, Switch} from 'react-router-dom'
import { Redirect} from 'react-router'
<Switch> <Route exact path="/login" component={Login}/> <Home> <Route path="/model" component={Model}/> <Route path="/result" component={Result}/> </Home> <Redirect from="/" to="/home" /> </Switch>
Switch標簽包裹Route,講Redirect放到最后,解決


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM