我有一个集成的React应用程序(它已集成到现有的Flask应用程序中),并且React应用程序的条目不在网站的根目录中。触发React应用程序的第一个URL是'/ active-items'。
但是,其他路径不必然会扩展该路径。有些路线是'/ active-items / item /',有些则完全不同,比如'/ item-selection'。
考虑到这一点,我正在尝试设置我的React Router以为每个路由提供基本组件。基本上,任何触发的路由都应该将'App'组件作为基本组件,而在App组件中我有'{props.children}'。
我已经尝试了几次迭代的路线应该是什么样子,但没有运气。
我的最新迭代是:
<Router>
<div>
<Route path='/' component={App}>
<Route path='active-items' component={ActiveItems} />
</Route>
</div>
</Router>
应用程序已呈现,但ActiveItems未呈现。任何想法我该如何处理?
编辑:我正在使用react-router-dom v4.0.0
答案 0 :(得分:4)
React Router的版本4 有很多重大变化。您不能再以这种方式使用嵌套路由。使用新版本的React Router查看这个嵌套路由示例。
const Header = () => (
<nav>
<ul>
<li>Home</li>
<li>About</li>
</ul>
</nav>
)
const Footer = () => (
<footer>
Copyrights
</footer>
)
const Layout = props => (
<div className="layout">
<div className="layout__container">
<Header />{ props.children }
<Footer />
</div>
</div>
)
const Home = () => <Layout>This is the home page.</Layout>
const About = () => <Layout>This is the about page.</Layout>
<Router>
<div>
<Route path="/" component={Home} />
<Route path="/about" component={About} />
</div>
</Router>
希望它有所帮助。
这就是我实际做的事情。
import { BrowserRouter, Route, Switch } from 'react-router-dom'
import React from 'react'
import About from './components/views/About'
import Home from './components/views/Home'
import Layout from './components/views/Layout'
const Routes = () => (
<BrowserRouter>
<Layout>
<Switch>
<Route exact path='/' component={Home} />
<Route exact path='/about' component={About} />
</Switch>
</Layout>
</BrowserRouter>
)
export default Routes
答案 1 :(得分:0)
我认为你误解了React-router的工作方式。
嵌套路由呈现&#34;嵌套&#34;,这意味着父路由将呈现自身,然后是所有子项,通常用于公共路由。
这里有一个我正在使用的工作示例:
<Router history={browserHistory}>
<Route path='/' component={Root}>
<Route path='/examples/react-redux-websocket' component={App} />
<Route path='/examples/react-redux-websocket/chat/:chatid/participant/:participantid' component={Chat} />
<Route path='/examples/react-redux-websocket/chat/:chatid' component={Chat} />
<Route path='/*' component={NoMatch} />
</Route>
</Router>
class Root extends Component {
render () {
return (
<div>
{this.props.children}
<Footer />
</div>
)
}
}
如您所见,Root路由呈现一个公共页脚,然后是所有嵌套的子项。 Root one中的所有路由也将呈现相同的页脚。
我认为你需要的是这样的:
<Router>
<Route path='/' component={App} />
<Route path='/active-items' component={ActiveItems} />
</Router>
查看www.facundolarocca.com看它是否有效,你也会找到回购。
让我知道它是否有效。