Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- postcss
- KDT 프로그래머스 데브코스 프론트엔드
- SCSS use
- vue 이벤트 수신
- 고양이 사진 검색기
- 다른컴퓨터에서 git사용
- 이벤트 수식어
- 프로그래머스 K_Digital Training
- netlify redirect
- git 같은계정 다른 컴퓨터
- 쌓임맥락
- Vue
- react next
- KDT 프로그래머스
- vue 지역 컴포넌트
- SCSS extend
- 프로그래머스 데브코스 프론트엔드
- vue mixin
- intersection opserver
- 폼 입력 바인딩
- flex
- 리액트
- SCSS forward
- vuex map
- SCSS import
- 프로그래머스 데브코스
- Spacer
- nextjs사용법
- 리스트 렌더링
- 프로그래머스 프론트엔드 데브코스
Archives
- Today
- Total
혼자 적어보는 노트
[React] props에 대한 이해 본문
React의 props에 대한 이해.
jsx에선 component에 정보를 보낼 수 있다.
컴포넌트에서 컴포넌트로는 물론 컴포넌트에서 children component로 정보를 보낼 수 있다.
정보를 보내기 위해서는 아래와 같은 방식을 사용한다.
<Content name = "first" />
content라는 component에 name이라는 property에 first라는 값을 주었다는 뜻.
이렇게 지정한 property들을 props라고 부른다
function App() {
return (
<div>
<h1>hi hello</h1>
<Content
name="first"
jjjj={true}
kaksk={["red","orange",1,2,3]}
/>
</div>
);
}
예를들면 이런식으로 props name과 value를 마음대로 설정할 수 있고
여러개의 props를 전송할 수 있다.
function Content(props) {
console.log(props);
return <h1>hey</h1>
}
// Object
// jjjj: true
// kaksk: (5) ['red', 'orange', 1, 2, 3]
// name: "first"
// [[Prototype]]: Object
그리고 그 props들을 Contents함수의 인자로 넣어줄 수 있고 object로 받아볼 수 있다.
function Content(props) {
console.log(props.name);
return <h1>hey</h1>
}
전달받은 props object 내부의 name을 꺼내려면 위와 같이
props.name으로 꺼내서 사용해도 되지만
function Content({ name }) {
console.log(name);
return <h1>hey</h1>
}
ES6의 방법으로 이렇게 꺼내쓸 수도 있다.
* 구조분해 할당 사용 가능 (destructuring assignment)
* pops의 이름과 같아야함
function Content({name}) {
return <h2>Hello, I'm {name}</h2>
}
function App() {
return (
<div>
<h1>Welcome</h1>
<Content name="Jay"/>
<Content name="Sujan"/>
<Content name="Miki"/>
</div>
);
}
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
예를들어 App component 안에서 content를 여러 개 렌더링 한다면
아래와 같이 표시된다.
작은 예제만으로도 효율성이 느껴진다.
위 예제는 단순한 렌더링이지만 이 방식을 사용하여
각종 데이터 또한 props로 받은 후 표현해 줄 수 있다는 것을 의미한다.
'React' 카테고리의 다른 글
[React] Class Components와 State (0) | 2021.10.22 |
---|---|
[React] Prop-types (0) | 2021.10.22 |
[React] 반복되는 component 표현 - map함수 (0) | 2021.10.21 |
[React] JSX와 Component에 대한 이해 (+ Fragments) (0) | 2021.10.20 |
[React] 리액트 세팅과 리액트 동작 방식에 대한 이해 (0) | 2021.10.19 |
Comments