REACTROUTER 사용
11950 단어 react-routerReact
차리다
create-react-app로 프로젝트를 제작합니다.
$ create-react-app route-test
react-router-dom을 설치합니다.
react-router-dom의 버전은 4.0.0입니다.
$ yarn add react-router-dom
개발 서버 시작.
$ yarn start
시험해 보다
src/index.js
import React from 'react';
import ReactDOM from 'react-dom';
import { BrowserRouter as Router, Route, Link } from 'react-router-dom'
import './index.css';
const Home = () => (
<div>
<h2>Home</h2>
</div>
)
const About = () => (
<div>
<h2>About</h2>
</div>
)
const Contact = () => (
<div>
<h2>Contact</h2>
</div>
)
const Child = ({ match }) => (
<div>
<p>{match.params.id}です</p>
</div>
)
const App = () => (
<div>
<Nav />
<Router>
<div style={{padding: '10px'}}>
<p>
<Link to="/">Home</Link>
<Link to="/about">About</Link>
<Link to="/contact">Contact</Link>
</p>
<hr />
<Route exact path="/" component={Home}/>
<Route path="/about" component={About}/>
<Route path="/contact" component={Contact}/>
<hr />
<Route exact path="/" render={() => (
<p>ホームページにようこそ!</p>
)} />
<Route path="/:id" component={Child}/>
</div>
</Router>
<Footer />
</div>
)
const Nav = () => (
<div className="Nav" style={{ background: '#6cf', padding: '20px 10px' }}>
Navbar
</div>
)
const Footer = () => (
<div className="footer" style={{textAlign: 'center'}}>
<hr />
Footer
</div>
)
ReactDOM.render(
<App />,
document.getElementById('root')
);
캡처
뻔한 일
Reference
이 문제에 관하여(REACTROUTER 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/edo1z/items/2224675decdf5f9af690텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)