我正在使用react-router并且在行为上遇到一些困难。
Nav
根据需要显示在所有页面上。但是,Profile
也显示在所有页面上。我只想在/home
以及/music
和/players
页面上显示此内容。但是,它也会在/charts
页面上显示,这让我感到困惑。
我的代码如下所示。
import React from 'react';
import { Route } from 'react-router-dom'
import Nav from './components/Nav'
import Profile from './components/Profile'
import Players from './components/Players'
import Music from './components/Music'
import Charts from './components/Charts'
const App = () => {
return (
<section>
<Nav />
<Route path="/home">
<div>
<Profile avatarUrl={ avatarUrl }/>
<Route path="/players" component={Players}/>
<Route path="/music" component={Music}/>
</div>
</Route>
<Route path="/charts" component={Charts}/>
</section>
)
}
export default App;
我已阅读文档,尝试添加Switch
组件,将exact
添加到home
路由,但这会导致其他意外行为。
有人可以告诉我做错了吗?
谢谢皮特!
答案 0 :(得分:1)
试试这个:
import React from 'react';
import { Route, BrowserRouter as Router } from 'react-router-dom'
import Nav from './components/Nav'
import Profile from './components/Profile'
import Players from './components/Players'
import Music from './components/Music'
import Charts from './components/Charts'
const Home = ({match}) => {
return (
<div>
<Profile avatarUrl={ avatarUrl }/>
<Route path=`${match.url}/players` component={Players}/>
<Route path=`${match.url}/music` component={Music}/>
</div>
);
};
const App = () => {
return (
<section>
<Nav />
<Router>
<Switch>
<Route path="/charts" exact={true} component={Charts}/>
<Route path="/home" component={Home} />
</Switch>
</Router>
</section>
)
}
export default App;
我没有对此进行测试,但这应该可行。
假设你正在使用react-router v4,我不知道你是否可以按照你使用它的方式实际使用你的家庭路线。
在上面的代码中,Switch基本上呈现了在其下指定的路由之间的第一个匹配。确切的关键字将确保只有/charts
路径才会显示Charts
组件。
Home
组件将在以/home
开头的任何路径中呈现。
现在,对于路径/home/players
,您会看到Profile
和Players
组件,而对于路径/home/music
,您会看到其他组合。
希望这会有所帮助。 :)
修改强>
在代码中添加了Router
。
修改强>
此处提供的工作代码:https://codesandbox.io/s/8x9pql9m19
将右侧的路线改为:
/home
/home/players
/home/music
/charts