3

当我在 React Router V4 中有嵌套路由时,如何将用户重定向到 NoMatch 组件?

这是我的代码:

import React from 'react';
import ReactDOM from 'react-dom';
import injectTapEventPlugin from 'react-tap-event-plugin';
injectTapEventPlugin();

import {
    BrowserRouter as Router,
    Route,
    Switch
}
from 'react-router-dom';
import Website from './website/Website';

const Register = ({ match}) => {
    return (
        <div>
            <Route exact path={match.url} render={() => {return <h1>Register</h1>} } />
            <Route path={`${match.url}/detail`} render={()=>{return <h1>Register Detail</h1>}} />
        </div>
    )
}

const App = () => (
    <Router>
        <Switch>
                <Route exact path="/" render={() =>  {return <h1>Home</h1> }} />
                <Route path="/register" component={Register} />
                <Route component={() => {return <h1>Not found!</h1>}} />
        </Switch>
    </Router>
);

ReactDOM.render(
    <App/>, document.getElementById('root'));

如您所见,Register 下面有一个 NoMatch 路由,但我不想在我的子组件 Register 上使用相同的路由映射。这样,如果我去 /register/unregisteredmatch 页面只会显示空白,因为不要输入 NoMatch Route。

如何映射全局 NoMatch 而不在我的子路由上指定?我不想将此责任传递给子组件。

谢谢。

4

2 回答 2

0

我对Switch有同样的问题,因为如果我不去 /a ,以下内容将始终呈现我的NoMatch组件

<Router history={history}>
  <Switch>
    <Route path='/a' component={A} />
    <Switch>
      <Route path='/b' component={B} />
      <Route path='/b/:id' component={C} />
    </Switch>
    <Route path="*" component={NoMatch}/>
  </Switch>
</Router>

但是,如果您像这样将NoMatch移动到嵌套的Switch中,它将按预期工作:

<Router history={history}>
  <Switch>
    <Route path='/a' component={A} />
    <Switch>
      <Route path='/b' component={B} />
      <Route path='/b/:id' component={C} />
      <Route path="*" component={NoMatch}/>  
    </Switch>
  </Switch>
</Router>

即使这是问题的“解决方案”,它也不是您想要的,因为第二个Switch与第一个Route一样位于不同的文件中。

因此,随着应用程序的增长和更多路由在不同文件中发挥作用,您永远不知道需要将NoMatch路由放在哪里才能使其按预期工作。

你有没有找到解决这个问题的其他方法?

于 2017-05-07T12:02:21.333 回答
-1

您可以做的是在您的根应用程序中定义所有可能允许的路由。因此,使用可选模式调整您的 App 组件,如下所示:

const App = () => (
    <Router>
        <Switch>
                <Route exact path="/" render={() =>  {return <h1>Home</h1> }} />
                <Route path="/register/(detail)?" exact component={Register} />
                <Route component={() => {return <h1>Not found!</h1>}} />
        </Switch>
    </Router>
);
于 2017-04-08T23:25:06.580 回答