티스토리 뷰
초기값을 정해주고자 할 때 constructor의 state에 지정해준다.
constructor(props) {
super(props);
this.state = {
posts: [],
comments: []
};
}
이벤트를 통해 state의 초기값을 바꾸고자 한다면 this.setState를 사용한다.
단, onClick등 함수 내에서 state의 값을 바꾼다면 this를 인식하지 못하므로 함수뒤에 .bind(this)를 붙여 해당 컴포넌트를 인식시켜준다.
componentDidMount() {
fetchPosts().then(response => {
this.setState({
posts: response.posts
});
});
fetchComments().then(response => {
this.setState({
comments: response.comments
});
});
}
'React' 카테고리의 다른 글
[React] Create React App 프로젝트 구조 (0) | 2021.08.13 |
---|---|
[React] Class vs Function component (0) | 2021.08.02 |
[React] React 시작하기 (0) | 2021.07.26 |
[React] class와 function 컴포넌트 비교 / Hook이 생겨난 배경 (0) | 2020.08.10 |
[React] react-create-app 정리 (0) | 2020.07.30 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- C++
- 인접행렬
- Stack
- 클래스
- 배열
- 스텍
- 알고리즘
- client side rendering
- 입출력장치
- javascript
- react
- 병행프로세스
- 최단경로
- C
- 교착상태
- dfs
- 동적프로그래밍
- 재귀함수
- server side rendering
- 퀵정렬
- 운영체제
- BFS
- 인접리스트
- 구조체
- 자료구조
- 소프트웨어
- stackframe
- Java
- 세마포어
- 이진탐색
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함