自学内容网 自学内容网

react中的重定向Redirect

1,

首先引入

import {BrowserRouter,Route,Switch,Redirect} from 'react-router-dom'

2,使用

一般写在所有路由注册的最下方,当所有路由都无法匹配时,跳转到Redirect指定的路由

<Switch>
<Route path="/about" component={About}/>
<Route path="/home" component={Home}/>
<Redirect to="/about"/>
</Switch>


原文地址:https://blog.csdn.net/m0_61265297/article/details/142852983

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!