-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
React 컴포넌트 간의 관계와 데이터 교환 #2
Comments
👍
|
@seongbin9786 |
- 기존에 도출한 엔터티들은 그대로 사용 - 도메인 분석으로 도출한 스펙을 테스트함 - 서비스 테스트가 필요함
Question에 대해 상세 내용을 적어주세요
React에서 컴포넌트의 관계는 부모-자식 관계가 있다
extends와 implements가 아닌 이상 이 관계는 Angular에서 개념과 동일하다.
이런 식으로 작성하게 되면
TopComponent
는BottomComponent
의 부모 컴포넌트가 된다.JSX
에서 마치 HTML의 tag와 같이 해당 컴포넌트를 입력하게 되면 부모-자식 관계가 성립된다.React에서는 데이터 교환이 두가지 방법이 있다.
첫번째는 정적인 방법인
props
이고두번째는 동적인 방법인
state
이다.먼저 첫번째 방법인
props
는 부모 컴포넌트에서 자식 컴포넌트에게 값을 넘겨줄때 사용한다.물론
object
도 넘길수 있다.원하는 적용 방안을 설명해주세요.
사실상 props를 쓸 일은 데이터 조회후 변경이 일어나지 않을때 (리스트 등)
이와 관련된 이슈가 있습니까?
x
적용될때 어떠한 부수효과가 발생할 수 있습니까?
x
The text was updated successfully, but these errors were encountered: