All Articles

[Wecode] TIL_Day70

TIL 68일차 | 브랜디 기업 협업 15일차

rest

6000개에서 10개 뽑아내려고 groupby 쓰지 말고

서브쿼리(?) 이용해서 가져오기

주소는 유니크하고 유니크한 주소는 하나의 리소스가 된다.

경로 자체가 값이다.

state 배열에 새로운 요소 추가 참고 자료

state 배열 요소 제거

removeItem(item) {
    const item = getItem(this.state.list, item.id) // Method to get item in list through comparison (IE: find some item with item.id), it has to return ITEM and INDEX in array
    const newlist = [].concat(list) // Clone array with concat or slice(0)
    newlist.splice(item.index, 1);
    this.setState({list: newlist});
  }

새로운 배열을 선언해서 그 변수에 기존 배열을 그대로 복사해서 값을 바꾼 후, state에 복사하는 방식으로 배열 요소들을 처리하면 되겠다.

담당자 추가, 삭제 UI, state 구현

비밀번호 변경 Modal, API 구현