Laravel5.5+react-router-dom 퀵스타트

공식 QuickStart 을 참고로 해 갑니다.
※ 나 자신도 React 시작 갓이므로 이렇게 개발했다! 라는 비망록적인 의미도 있습니다.

전제



Laravel 5.5 + React의 초기 설정이 완료되었음
( 마지막 기사 참조)

Laravel의 라우터 설정



react-router-dom에서 정의한 URL로 직접 액세스해도 제대로 표시되도록 설정을 변경합니다.
이 작업을 수행하지 않으면 '127.0.0.1:8000/'에 액세스할 수 있지만 '127.0.0.1:8000/about'에 액세스할 수 없습니다.
( 여기 에 기재되어 있었습니다)

router/web.php
+ Route::get('/{path?}', function(){
+     return view('welcome');
+ } )->where('path','.*');

- Route::get('/', function () {
-     return view('welcome');
- });

React-router-dom 설치


npm install --save react-router-dom

resources/assets/js/components/Example.js
※ほぼQuickStartのママです。 前回のExample.jsをちょっとマージしてます。

import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import {
  BrowserRouter as Router,
  Route,
  Link
} from 'react-router-dom'

const Home = () => (
  <div>
    <h2>Home</h2>
  </div>
)

const About = () => (
  <div>
    <h2>About</h2>
  </div>
)

const Topic = ({ match }) => (
  <div>
    <h3>{match.params.topicId}</h3>
  </div>
)

const Topics = ({ match }) => (
  <div>
    <h2>Topics</h2>
    <ul>
      <li>
        <Link to={`${match.url}/rendering`}>
          Rendering with React
        </Link>
      </li>
      <li>
        <Link to={`${match.url}/components`}>
          Components
        </Link>
      </li>
      <li>
        <Link to={`${match.url}/props-v-state`}>
          Props v. State
        </Link>
      </li>
    </ul>

    <Route path={`${match.url}/:topicId`} component={Topic}/>
    <Route exact path={match.url} render={() => (
      <h3>Please select a topic.</h3>
    )}/>
  </div>
)

const BasicExample = () => (
  <Router>
    <div>
      <ul>
        <li><Link to="/">Home</Link></li>
        <li><Link to="/about">About</Link></li>
        <li><Link to="/topics">Topics</Link></li>
      </ul>

      <hr/>

      <Route exact path="/" component={Home}/>
      <Route path="/about" component={About}/>
      <Route path="/topics" component={Topics}/>
    </div>
  </Router>
)
export default BasicExample

if (document.getElementById('example')) {
    ReactDOM.render(<BasicExample />, document.getElementById('example'));
}


결과



"127.0.0.1/8000"에 액세스하면 링크가 표시되고 클릭하면 화면 전환이 가능했습니다.
주소가 변경되었는지 확인할 수 있다고 생각합니다.

○127.0.0.1:8000/





127.0.0.1:8000/아보 t





127.0.0.1:8000/와 피 cs





이번은 일단 여기까지. . .

좋은 웹페이지 즐겨찾기