我试图在/dashboard
路径下使用react-router获取嵌套UI,所以我得到了:
<Route
path={'/dashboard'}
component={Components.Dashboard}
onEnter={utils.onlyAfterLogin}>
<Route
path={'/tiendas'}
component={Components.StoresIndex} />
</Route>
我希望'/dashboard'
成为父路由,拥有自己的UI内容,并包含呈现为嵌套路径的嵌套UI。因此,'/dashboard/tiendas'
应该呈现信息中心的内容以及Components.StoresIndex
组件。
当我尝试访问'/dashboard/tiendas'
时,会抛出警告日志:
warning: [react-router] Location "/dashboard/tiendas" did not match any routes
Dashboard的东西渲染得很好,这就是Dashboard组件的样子(只显示渲染方法):
render () {
return (
<div>
<AppBar
title="Distribuidores Movistar"
onLeftIconButtonTouchTap={() => {this.setState({leftNavOpen:true})}}
iconElementRight={
<IconMenu
iconButtonElement={
<IconButton><MoreVertIcon /></IconButton>
}
targetOrigin={{horizontal: 'right', vertical: 'top'}}
anchorOrigin={{horizontal: 'right', vertical: 'top'}}
>
<MenuItem primaryText="Cerrar sessión" />
</IconMenu>
}
/>
<LeftNav open={this.state.leftNavOpen}>
<MenuItem>Ventas</MenuItem>
<MenuItem>Inventario</MenuItem>
<MenuItem>Usuarios</MenuItem>
<MenuItem>Tiendas</MenuItem>
<MenuItem>Configuraciones</MenuItem>
<Divider/>
<FloatingActionButton mini={true} style={{marginRight: 20}}>
<ContentAdd />
</FloatingActionButton>
</LeftNav>
<Link to={'/dashboard/tiendas'}>Akira</Link>
{this.props.children}
</div>
);
}
答案 0 :(得分:5)
假设您使用最新的react-router版本(编写本文时的2.0.1),应该如何使用它。 您不需要在路线前加上&#39; /&#39;除非它是最顶级的路线组成部分。
<Route path="/" component={Root}>
<Route path="dashboard" component={Dashboard}>
<Route path="tiendas" component={Tiendas}/>
</Route>
</Route>