개발의 시작과 끝
2021.02.10 / React - create : contents 본문
생활코딩 19.6강 - create 구현 : contents
this.state.contents.push(
{id:this.max_content_id, titie:_title, desc:_desc}
);
위의 방식은 기존에 있었던 contents의 배열에 데이터를 추가하는 방식으로
나중에 성능을 개선할 때 까다롭다.
var _contents = this.state.contents.concat(
{id:this.max_content_id, titie:_title, desc:_desc}
)
기존에 가지고 있었던 값이 새롭게 만들어진 데이터로 교체된다.
이 방법이 나중에 개선할 때에도 수정하기 쉽다.
참고
- www.youtube.com/watch?v=OpLMcB1nRkE&list=PLuHgQVnccGMCRv6f8H9K5Xwsdyg4sFSdi&index=33
'리액트' 카테고리의 다른 글
2021.02.10 / React - immutable (0) | 2021.02.10 |
---|---|
2021.02.10 / React - create : shouldComponentUpdate (0) | 2021.02.10 |
2021.02.09 / React - 이벤트 bind, setState (4) | 2021.02.09 |
2021.02.09 / React - 이벤트 (0) | 2021.02.09 |
2021.02.09 / React - render (0) | 2021.02.09 |