Laravel5.5+react-router-dom 퀵스타트
※ 나 자신도 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
이번은 일단 여기까지. . .
Reference
이 문제에 관하여(Laravel5.5+react-router-dom 퀵스타트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/yamato_sorariku/items/461221282d7d9f2d0b90
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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
이번은 일단 여기까지. . .
Reference
이 문제에 관하여(Laravel5.5+react-router-dom 퀵스타트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/yamato_sorariku/items/461221282d7d9f2d0b90
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
npm install --save react-router-dom
※ほぼ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
이번은 일단 여기까지. . .
Reference
이 문제에 관하여(Laravel5.5+react-router-dom 퀵스타트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yamato_sorariku/items/461221282d7d9f2d0b90텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)