118

我有以下内容:

  <Route name="app" path="/" handler={App}>
    <Route name="dashboards" path="dashboards" handler={Dashboard}>
      <Route name="exploreDashboard" path="exploreDashboard" handler={ExploreDashboard} />
      <Route name="searchDashboard" path="searchDashboard" handler={SearchDashboard} />
      <DefaultRoute handler={DashboardExplain} />
    </Route>
    <DefaultRoute handler={SearchDashboard} />
  </Route>

使用 DefaultRoute 时,SearchDashboard 呈现不正确,因为任何 *Dashboard 都需要在 Dashboard 中呈现。

我希望“app”路由中的 DefaultRoute 指向路由“searchDashboard”。这是我可以用 React Router 做的事情,还是我应该为此使用普通的 Javascript(用于页面重定向)?

基本上,如果用户转到主页,我想将它们发送到搜索仪表板。所以我想我正在寻找一个等效于的 React Router 功能window.location.replace("mygreathostname.com/#/dashboards/searchDashboard");

4

14 回答 14

177

您可以使用重定向而不是 DefaultRoute

<Redirect from="/" to="searchDashboard" />

感谢 Ogglas,更新 2019-08-09 以避免出现刷新问题

<Redirect exact from="/" to="searchDashboard" />

来源:

https://stackoverflow.com/a/43958016/3850405

于 2015-04-19T06:04:57.627 回答
65

更新:

对于 v6,您可以使用Navigate. 您可以使用“不匹配”路由来处理“不匹配”案例。

<Routes>
  <Route path="/" element={<Navigate to="/searchDashboard" />}>
    <Route path="searchDashboard" element={<SearchDashboard/>} />
    <Route
      path="*"
      element={<Navigate to="/" />}
    />
  </Route>
</Routes>

https://reactrouter.com/docs/en/v6/getting-started/tutorial#adding-a-no-match-route

https://stackoverflow.com/a/69872699/3850405

原来的:

使用的问题<Redirect from="/" to="searchDashboard" />是,如果您有不同的 URL,例如/indexDashboard,用户点击刷新或获取发送给他们的 URL,则用户/searchDashboard无论如何都会被重定向到。

如果您不希望用户能够刷新站点或发送 URL,请使用以下命令:

<Route exact path="/" render={() => (
    <Redirect to="/searchDashboard"/>
)}/>

如果searchDashboard在登录之后使用这个:

<Route exact path="/" render={() => (
  loggedIn ? (
    <Redirect to="/searchDashboard"/>
  ) : (
    <Redirect to="/login"/>
  )
)}/>
于 2017-05-13T21:09:59.583 回答
37

我错误地尝试使用以下命令创建默认路径:

<IndexRoute component={DefaultComponent} />
<Route path="/default-path" component={DefaultComponent} />

但这会创建两个不同的路径来呈现相同的组件。这不仅毫无意义,而且会导致您的 UI 出现故障,即,当您<Link/>基于this.history.isActive().

创建默认路由(不是索引路由)的正确方法是使用<IndexRedirect/>

<IndexRedirect to="/default-path" />
<Route path="/default-path" component={DefaultComponent} />

这是基于 react-router 1.0.0。请参阅https://github.com/rackt/react-router/blob/master/modules/IndexRedirect.js

于 2015-12-04T03:19:27.100 回答
12

更新:2020

而不是使用重定向,只需在path

例子:

<Route exact path={["/","/defaultPath"]} component={searchDashboard} />
于 2020-06-18T16:48:02.867 回答
11

乔纳森的回答似乎对我不起作用。我正在使用 React v0.14.0 和 React Router v1.0.0-rc3。这做到了:

<IndexRoute component={Home}/>.

所以在马修的案例中,我相信他会想要:

<IndexRoute component={SearchDashboard}/>.

来源:https ://github.com/rackt/react-router/blob/master/docs/guides/advanced/ComponentLifecycle.md

于 2015-10-14T07:16:44.430 回答
8
import { Route, Redirect } from "react-router-dom";

class App extends Component {
  render() {
    return (
      <div>
        <Route path='/'>
          <Redirect to="/something" />
        </Route>
//rest of code here

这将使得当您在本地主机上加载服务器时,它会将您重定向到 /something

于 2018-10-03T21:32:51.543 回答
8

由于最近发布了 V6,因此接受的答案将不起作用,因为 V6 中不再存在 Redirect。考虑使用导航。

 <Route path="/" element={<Navigate to="/searchDashboard" />} />

参考:- V6 文档

于 2021-12-13T15:24:11.107 回答
4

我遇到了类似的问题;如果没有一个路由处理程序匹配,我想要一个默认路由处理程序。

我的解决方案是使用通配符作为路径值。即还要确保它是您的路线定义中的最后一个条目。

<Route path="/" component={App} >
    <IndexRoute component={HomePage} />
    <Route path="about" component={AboutPage} />
    <Route path="home" component={HomePage} />
    <Route path="*" component={HomePage} />
</Route>
于 2017-04-30T02:16:31.027 回答
4

对于那些进入 2017 年的人来说,这是新的解决方案IndexRedirect

<Route path="/" component={App}>
  <IndexRedirect to="/welcome" />
  <Route path="welcome" component={Welcome} />
  <Route path="about" component={About} />
</Route>
于 2017-11-02T00:40:14.730 回答
2
 <Route name="app" path="/" handler={App}>
    <Route name="dashboards" path="dashboards" handler={Dashboard}>
      <Route name="exploreDashboard" path="exploreDashboard" handler={ExploreDashboard} />
      <Route name="searchDashboard" path="searchDashboard" handler={SearchDashboard} />
      <DefaultRoute handler={DashboardExplain} />
    </Route>
    <Redirect from="/*" to="/" />
  </Route>
于 2016-11-18T19:46:26.573 回答
1

首选方法是使用反应路由器IndexRoutes组件

你像这样使用它(取自上面链接的反应路由器文档):

<Route path="/" component={App}>
    <IndexRedirect to="/welcome" />
    <Route path="welcome" component={Welcome} />
    <Route path="about" component={About} />
</Route>
于 2017-03-02T18:00:05.387 回答
1

首先你需要安装:

npm install react-router-dom;

然后你需要使用你的 App.js(在你的情况下它可以不同)并进行下面的修改。在这种情况下,我选择了重定向来获得正确的渲染过程。

import { BrowserRouter as Router, Route, Switch, Redirect } from "react-router-dom";

<Router>
        <Suspense fallback={<Loading />}>
          <Switch>
            <Route exact path="/">
              <Redirect to="/Home" component={Routes.HomePage}/>
            </Route>
            <Route exact path="/Biz" component={Routes.Biz} />
          </Switch>
        </Suspense>
      </Router>

您成功地进行了上面的修改,您可以看到重定向 URL 在您的浏览器路径上,并且渲染过程也根据它们的组件正常工作。

前段时间,我们有机会在 react 路由中使用了名为“DefaultRoute”的组件。

现在,它的折旧方法,并且使用它不是很流行,您可以创建名为 default 或其他名称的自定义路由,但仍然不是我们在现代 React.js 开发中这样做的方式。

只是因为使用“DefaultRoute”路由,我们可能会导致一些渲染问题,这是我们绝对希望避免的事情。

于 2021-02-28T20:32:15.657 回答
1

这是我的做法-

<Router>
  <div className="App">
    <Navbar />
    <TabBar />
    <div className="content">
      <Route exact path={["/default", "/"]}> //Imp
        <DefStuff />
      </Route>
      <Route exact path="/otherpage">
        <Otherstuff />
      </Route>
      <Redirect to="/defult" /> //Imp
    </div>
  </div>
</Router>
于 2021-07-05T08:51:23.370 回答
0

您可以像这样使用它来重定向特定的 URL,并在从旧路由器重定向到新路由器后渲染组件。

<Route path="/old-router">
  <Redirect exact to="/new-router"/>
  <Route path="/new-router" component={NewRouterType}/>
</Route>
于 2020-05-07T09:17:10.267 回答