Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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
Tags
more
Archives
Today
Total
관리 메뉴

ksw_devlog

TIL 02.24 - 최종 프로젝트 3주차 본문

TIL

TIL 02.24 - 최종 프로젝트 3주차

kimcoach 2023. 2. 26. 20:48
진행 중 모임 리스트 구현 코드 수정
// 참여 신청 수락 후 데이터(진행 중 모임), teamMember isWait=false, nickName=usernickName
  let myApprovedMeeting = [];
  const approvedMeeting = myAppliedMeeting.forEach((item) => {
    item.teamMember.forEach((member) => {
      if (
        member.isWait === false &&
        member.nickName === authService?.currentUser?.displayName
      ) {
        myApprovedMeeting.push(item);
        return false;
      }
    });
  });

teamPage 안에 teamMember 데이터가 배열로 되어있으므로 forEach안에 forEach를 또 사용하였다.