欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

React路由重定向Redirect

程序员文章站 2022-03-24 20:06:15
...

react路由重定向

          <Switch>
            {/* <Route path="/" exact component={NewsPage}  /> */}
            <Route path="/my" component={MyPage} />
            <Route path="/news" component={NewsPage}  />
            <Route path="/novel" component={NovelPage} />
            {/* 这里设置的重定向,实现了两种情况
              1.当以上path路径都不匹配时,重新定向,会重新定向到to="/novel" 从而指向component={NovelPage}
              2.设置进入的初始界面重定向
            */}
            <Redirect to="/novel"></Redirect>
          </Switch>
相关标签: react路由重定向