我怎么能用反应路由器-Dom的路由捆绑我的应用程序?

时间:2018-04-16 14:47:03

标签: javascript reactjs react-router react-router-dom

enter image description here

enter image description here

作为第一个图像,页面将呈现组件命名内容的路径。并且第二个没有正确地使用Redirect渲染,我该如何解决这个问题?先谢谢你。

1 个答案:

答案 0 :(得分:0)

尝试使用Switch

import { Route, Switch } from 'react-router-dom'

...

return (
  <div>
    <Header />

    <Switch>
      <Route path="/content" component={Content} />
      <Redirect from="/" to="/content" push />
    </Switch>

    <Footer />
  </div>
);

最终会做你想做的事。