Diff
checker
텍스트
텍스트
이미지
문서
Excel
폴더
Legal
Enterprise
데스크톱
요금제
로그인
데스크톱 앱 다운로드
텍스트 비교
두 텍스트 파일의 차이점을 찾아보세요
도구
기록
실시간 편집
변경 없는 행 숨기기
줄바꿈 비활성화
레이아웃
나란히 보기
합쳐 보기
비교 단위
스마트
단어
글자
구문 강조
언어 선택
제외
텍스트 변환
첫 변경으로
수정
Diffchecker Desktop
가장 안전하게 Diffchecker를 사용하는 방법. 데스크톱 앱을 사용하면 비교 데이터가 외부로 전송되지 않습니다!
데스크톱 앱 받기
Untitled diff
생성일
8년 전
비교 결과 만료 없음
초기화
내보내기
공유
설명
10 삭제
행
총
삭제
글자
총
삭제
이 기능을 계속 사용하려면 업그레이드해 주세요
Diff
checker
Pro
요금제 보기
111 행
복사
11 추가
행
총
추가
글자
총
추가
이 기능을 계속 사용하려면 업그레이드해 주세요
Diff
checker
Pro
요금제 보기
111 행
복사
/**
/**
* File: App.js
* File: App.js
* "React State Example-1: Update state using 2 select elements."
* "React State Example-1: Update state using 2 select elements."
* by Joe Dorocak (JoeCodeswell.com)
* by Joe Dorocak (JoeCodeswell.com)
* Demonstrates changing state with 2 select elements
* Demonstrates changing state with 2 select elements
*
*
* Source Code Link: https://joecodeswell.wordpress.com/2018/09/25/react-state-example-1-update-state-using-2-select-elements/
* Source Code Link: https://joecodeswell.wordpress.com/2018/09/25/react-state-example-1-update-state-using-2-select-elements/
*
*
* MIT License
* MIT License
*
*
* Copyright (c) [2018] [Joseph P. Dorocak]
* Copyright (c) [2018] [Joseph P. Dorocak]
*
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* furnished to do so, subject to the following conditions:
*
*
* The above copyright notice and this permission notice shall be included in all
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* copies or substantial portions of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
* SOFTWARE.
*
*
* https://en.forums.wordpress.com/topic/posting-javascript-markdown-does-not-show/
* https://en.forums.wordpress.com/topic/posting-javascript-markdown-does-not-show/
*
*
*
*
*/
*/
복사
복사됨
복사
복사됨
import React, { Component } from 'react';
import React, { Component } from 'react';
import logo from './logo.svg';
import logo from './logo.svg';
import './App.css';
import './App.css';
복사
복사됨
복사
복사됨
let programmerList = ["Admiral Grace Hopper","Ada Lovelace","Donald Knuth","James Gosling","Guido van Rossum","Linus Torvalds"];
let programmerList = ["Admiral Grace Hopper","Ada Lovelace","Donald Knuth","James Gosling","Guido van Rossum","Linus Torvalds"];
복사
복사됨
복사
복사됨
class App extends Component {
class App extends Component {
constructor() {
constructor() {
super();
super();
this.state = {
this.state = {
counter: 0,
counter: 0,
programmer_list: programmerList,
programmer_list: programmerList,
fmSelFrom: programmerList[0],
fmSelFrom: programmerList[0],
fmSelTo:programmerList[0]
fmSelTo:programmerList[0]
};
};
}
}
handleFromChange = (event) => {
handleFromChange = (event) => {
this.setState({
this.setState({
fmSelFrom: event.target.value
fmSelFrom: event.target.value
});
});
}
}
handleToChange = (event) => {
handleToChange = (event) => {
this.setState({
this.setState({
fmSelTo: event.target.value
fmSelTo: event.target.value
});
});
}
}
render() {
render() {
// inside class App -> render(){ before return(
// inside class App -> render(){ before return(
return (
return (
복사
복사됨
복사
복사됨
/* begin out of the box jsx */
/* begin out of the box jsx */
<div className="App">
<div className="App">
<header className="App-header">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<img src={logo} className="App-logo" alt="logo" />
<h1 className="App-title">Welcome to React</h1>
<h1 className="App-title">Welcome to React</h1>
</header>
</header>
<p className="App-intro">
<p className="App-intro">
To get started, edit <code>src/App.js</code> and save to reload.
To get started, edit <code>src/App.js</code> and save to reload.
</p>
</p>
{/* end out of the box jsx */}
{/* end out of the box jsx */}
{/* begin non out of the box jsx */}
{/* begin non out of the box jsx */}
<div id="show-programmer-list">
<div id="show-programmer-list">
<p>Programmer List</p>
<p>Programmer List</p>
{this.state.programmer_list.map( (itm,ix) => <p key={ix} value={itm} >ix:{ix}->itm:{itm}</p> ) }
{this.state.programmer_list.map( (itm,ix) => <p key={ix} value={itm} >ix:{ix}->itm:{itm}</p> ) }
</div>
</div>
복사
복사됨
복사
복사됨
<div id="select-programmer-from-to">
<div id="select-programmer-from-to">
<label>
<label>
Pick your FROM Programmer:
Pick your FROM Programmer:
<select id="select-from" value={this.value} onChange={this.handleFromChange} >
<select id="select-from" value={this.value} onChange={this.handleFromChange} >
{this.state.programmer_list.map( (itm,ix) => <option key={ix} value={ix+":"+itm} >{itm}</option> ) }
{this.state.programmer_list.map( (itm,ix) => <option key={ix} value={ix+":"+itm} >{itm}</option> ) }
</select>
</select>
</label>
</label>
<label>
<label>
Pick your TO Programmer:
Pick your TO Programmer:
<select id="select-to" value={this.key} onChange={this.handleToChange} >
<select id="select-to" value={this.key} onChange={this.handleToChange} >
{this.state.programmer_list.map( (itm,ix) => <option key={ix} value={itm} >{itm}</option> ) }
{this.state.programmer_list.map( (itm,ix) => <option key={ix} value={itm} >{itm}</option> ) }
</select>
</select>
</label>
</label>
복사
복사됨
복사
복사됨
<p>this.state.fmSelFrom: {this.state.fmSelFrom}</p>
<p>this.state.fmSelFrom: {this.state.fmSelFrom}</p>
<p>this.state.fmSelTo: {this.state.fmSelTo}</p>
<p>this.state.fmSelTo: {this.state.fmSelTo}</p>
복사
복사됨
복사
복사됨
</div>
</div>
{/* end non out of the box jsx */}
{/* end non out of the box jsx */}
복사
복사됨
복사
복사됨
</div>
</div>
/* end of <div className="App"> */
/* end of <div className="App"> */
복사
복사됨
복사
복사됨
// inside class App -> render(){ ->return( -> after <div className="App"></div>
// inside class App -> render(){ ->return( -> after <div className="App"></div>
복사
복사됨
복사
복사됨
); // end render -> return
); // end render -> return
} // end render () code
} // end render () code
}
}
복사
복사됨
복사
복사됨
export default App;
export default App;
저장된 비교 결과
원본
파일 열기
/** * File: App.js * "React State Example-1: Update state using 2 select elements." * by Joe Dorocak (JoeCodeswell.com) * Demonstrates changing state with 2 select elements * * Source Code Link: https://joecodeswell.wordpress.com/2018/09/25/react-state-example-1-update-state-using-2-select-elements/ * * MIT License * * Copyright (c) [2018] [Joseph P. Dorocak] * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * https://en.forums.wordpress.com/topic/posting-javascript-markdown-does-not-show/ * * */ import React, { Component } from 'react'; import logo from './logo.svg'; import './App.css'; let programmerList = ["Admiral Grace Hopper","Ada Lovelace","Donald Knuth","James Gosling","Guido van Rossum","Linus Torvalds"]; class App extends Component { constructor() { super(); this.state = { counter: 0, programmer_list: programmerList, fmSelFrom: programmerList[0], fmSelTo:programmerList[0] }; } handleFromChange = (event) => { this.setState({ fmSelFrom: event.target.value }); } handleToChange = (event) => { this.setState({ fmSelTo: event.target.value }); } render() { // inside class App -> render(){ before return( return ( /* begin out of the box jsx */ <div className="App"> <header className="App-header"> <img src={logo} className="App-logo" alt="logo" /> <h1 className="App-title">Welcome to React</h1> </header> <p className="App-intro"> To get started, edit <code>src/App.js</code> and save to reload. </p> {/* end out of the box jsx */} {/* begin non out of the box jsx */} <div id="show-programmer-list"> <p>Programmer List</p> {this.state.programmer_list.map( (itm,ix) => <p key={ix} value={itm} >ix:{ix}->itm:{itm}</p> ) } </div> <div id="select-programmer-from-to"> <label> Pick your FROM Programmer: <select id="select-from" value={this.value} onChange={this.handleFromChange} > {this.state.programmer_list.map( (itm,ix) => <option key={ix} value={ix+":"+itm} >{itm}</option> ) } </select> </label> <label> Pick your TO Programmer: <select id="select-to" value={this.key} onChange={this.handleToChange} > {this.state.programmer_list.map( (itm,ix) => <option key={ix} value={itm} >{itm}</option> ) } </select> </label> <p>this.state.fmSelFrom: {this.state.fmSelFrom}</p> <p>this.state.fmSelTo: {this.state.fmSelTo}</p> </div> {/* end non out of the box jsx */} </div> /* end of <div className="App"> */ // inside class App -> render(){ ->return( -> after <div className="App"></div> ); // end render -> return } // end render () code } export default App;
수정본
파일 열기
/** * File: App.js * "React State Example-1: Update state using 2 select elements." * by Joe Dorocak (JoeCodeswell.com) * Demonstrates changing state with 2 select elements * * Source Code Link: https://joecodeswell.wordpress.com/2018/09/25/react-state-example-1-update-state-using-2-select-elements/ * * MIT License * * Copyright (c) [2018] [Joseph P. Dorocak] * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * https://en.forums.wordpress.com/topic/posting-javascript-markdown-does-not-show/ * * */ import React, { Component } from 'react'; import logo from './logo.svg'; import './App.css'; let programmerList = ["Admiral Grace Hopper","Ada Lovelace","Donald Knuth","James Gosling","Guido van Rossum","Linus Torvalds"]; class App extends Component { constructor() { super(); this.state = { counter: 0, programmer_list: programmerList, fmSelFrom: programmerList[0], fmSelTo:programmerList[0] }; } handleFromChange = (event) => { this.setState({ fmSelFrom: event.target.value }); } handleToChange = (event) => { this.setState({ fmSelTo: event.target.value }); } render() { // inside class App -> render(){ before return( return ( /* begin out of the box jsx */ <div className="App"> <header className="App-header"> <img src={logo} className="App-logo" alt="logo" /> <h1 className="App-title">Welcome to React</h1> </header> <p className="App-intro"> To get started, edit <code>src/App.js</code> and save to reload. </p> {/* end out of the box jsx */} {/* begin non out of the box jsx */} <div id="show-programmer-list"> <p>Programmer List</p> {this.state.programmer_list.map( (itm,ix) => <p key={ix} value={itm} >ix:{ix}->itm:{itm}</p> ) } </div> <div id="select-programmer-from-to"> <label> Pick your FROM Programmer: <select id="select-from" value={this.value} onChange={this.handleFromChange} > {this.state.programmer_list.map( (itm,ix) => <option key={ix} value={ix+":"+itm} >{itm}</option> ) } </select> </label> <label> Pick your TO Programmer: <select id="select-to" value={this.key} onChange={this.handleToChange} > {this.state.programmer_list.map( (itm,ix) => <option key={ix} value={itm} >{itm}</option> ) } </select> </label> <p>this.state.fmSelFrom: {this.state.fmSelFrom}</p> <p>this.state.fmSelTo: {this.state.fmSelTo}</p> </div> {/* end non out of the box jsx */} </div> /* end of <div className="App"> */ // inside class App -> render(){ ->return( -> after <div className="App"></div> ); // end render -> return } // end render () code } export default App;
비교하기