admin管理员组文章数量:1346336
I'm using the latest version of React Router v4 and I'm trying to render my page ponents Home/About inside the PageWrap
div but the problem I'm having is that if I add the Routes into my header then it will switch the routes but they will display the Home/About ponent as part of the header and no where I want them to be.
If I put the routes into the PageWrap
then the router doesn't work but doesn't throw any errors on the console.
How can I display and switch between ponents in the PageBody
div?
Webpack link
app.js
import React from 'react'
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom'
import styled from 'styled-ponents'
import Header from './Header'
import Home from './pages/Home'
import About from './pages/About'
const Wrapper = styled.div`
display:flex;
min-height:100vh;
flex:1;
background:#eee;
`
const PageWrap = styled.div`
margin:0 auto;
min-width:1400px;
background: #000;
`
class App extends React.Component { // eslint-disable-line react/prefer-
stateless-function
render() {
return (
<div>
<Header />
<Wrapper>
<PageWrap>
<Router>
<Switch>
<Route exact path="/login" ponent={Home} />
<Route exact path="/frontpage" ponent={About} />
<Route exact path="/logout" render={() => (<div>logout</div>)} />
</Switch>
</Router>
</PageWrap>
</Wrapper>
</div>
)
}
}
export default App
Header.js
import React from 'react'
import { BrowserRouter as Router, Route, Link } from 'react-router-dom'
import styled from 'styled-ponents'
import Home from '../pages/Home'
import About from '../pages/About'
import Topics from '../pages/Topics'
const Wrapper = styled.div`
width:100%;
height:100px;
background:papayawhip;
`
class Header extends React.Component { // eslint-disable-line react/prefer-
stateless-function
render() {
return (
<Router>
<Wrapper>
<li><Link to="/">Home</Link></li>
<li><Link to="/about">About</Link></li>
<li><Link to="/topics">Topics</Link></li>
<Route exact path="/" ponent={Home} />
<Route exact path="/about" ponent={About} />
<Route path="/topics" ponent={Topics} />
</Wrapper>
</Router>
)
}
}
export default Header
home.js
const Home = () => (<div>Home</div>)
About.js
const About = () => (<div>About</div>)
I'm using the latest version of React Router v4 and I'm trying to render my page ponents Home/About inside the PageWrap
div but the problem I'm having is that if I add the Routes into my header then it will switch the routes but they will display the Home/About ponent as part of the header and no where I want them to be.
If I put the routes into the PageWrap
then the router doesn't work but doesn't throw any errors on the console.
How can I display and switch between ponents in the PageBody
div?
Webpack link
app.js
import React from 'react'
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom'
import styled from 'styled-ponents'
import Header from './Header'
import Home from './pages/Home'
import About from './pages/About'
const Wrapper = styled.div`
display:flex;
min-height:100vh;
flex:1;
background:#eee;
`
const PageWrap = styled.div`
margin:0 auto;
min-width:1400px;
background: #000;
`
class App extends React.Component { // eslint-disable-line react/prefer-
stateless-function
render() {
return (
<div>
<Header />
<Wrapper>
<PageWrap>
<Router>
<Switch>
<Route exact path="/login" ponent={Home} />
<Route exact path="/frontpage" ponent={About} />
<Route exact path="/logout" render={() => (<div>logout</div>)} />
</Switch>
</Router>
</PageWrap>
</Wrapper>
</div>
)
}
}
export default App
Header.js
import React from 'react'
import { BrowserRouter as Router, Route, Link } from 'react-router-dom'
import styled from 'styled-ponents'
import Home from '../pages/Home'
import About from '../pages/About'
import Topics from '../pages/Topics'
const Wrapper = styled.div`
width:100%;
height:100px;
background:papayawhip;
`
class Header extends React.Component { // eslint-disable-line react/prefer-
stateless-function
render() {
return (
<Router>
<Wrapper>
<li><Link to="/">Home</Link></li>
<li><Link to="/about">About</Link></li>
<li><Link to="/topics">Topics</Link></li>
<Route exact path="/" ponent={Home} />
<Route exact path="/about" ponent={About} />
<Route path="/topics" ponent={Topics} />
</Wrapper>
</Router>
)
}
}
export default Header
home.js
const Home = () => (<div>Home</div>)
About.js
const About = () => (<div>About</div>)
Share
Improve this question
asked Apr 22, 2017 at 17:55
tom harrisontom harrison
3,43311 gold badges47 silver badges72 bronze badges
2 Answers
Reset to default 8You should only have one <Router>
in your application and it should wrap all your <Route />
and <Link/>
ponents in your ponent tree.
So your render method in App ponent should be something like this.
render() {
return (
<Router>
<div>
<Header />
<Wrapper>
<PageWrap>
<Switch>
<Route exact path="/login" ponent={Home} />
<Route exact path="/frontpage" ponent={About} />
<Route exact path="/logout" render={() => (<div>logout</div>)} />
</Switch>
</PageWrap>
</Wrapper>
</div>
</Router>)
}
And make sure to remove <Router>
and all <Route>
s from your Header ponent.
Updated WebpackBin:https://www.webpackbin./bins/-KiLrUNoJVxxLhL8UWx1
At some point, when you have "tens or hundreds" or routes you may want to delegate routing.
You can see that referred to here as child routing
本文标签: javascriptReact router v4 render component inside elementStack Overflow
版权声明:本文标题:javascript - React router v4 render component inside element - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743825596a2545580.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论