0

使用react-router v0.12.4.

路线名称应该是唯一的吗?以下似乎不起作用。

<Route name='app' path='/' handler={MainApp} >
    // instead of DefaultRoute, we use path matching
    <Route path="/" name="dashboard" handler={Dashboard}>
        <DefaultRoute name="main" handler={DashboardMain}/>
        <Route name='settings' handler={DashboardSettings} />
    </Route>

    <Route name='settings' handler={AppSettings} />
</Route>
4

1 回答 1

0

根据https://github.com/rackt/react-router/issues/890#issuecomment-76475626,维护人员已澄清路由名称是唯一的:

是的,它们应该是独一无二的。我们曾经警告过你..我们可能仍然应该这样做。

于 2015-02-27T21:46:46.907 回答