내일배움캠프 4기 React 66일차(typescript)

최영진·2023년 2월 2일
0

1. Throttle, Debounce

2. celebfive refactoring

result

현재까지 몇명의 고려인, 조선인 등등이 나왔는지 체크하여 카운트.
각 문서에 total 수를 증가시켜 확인한다.

const changeTotal = async (result: string) => {
    const snapshot = await getDoc(doc(dbService, "results", result)); // 하나의 doc를 가져옴.
    console.log(result);
    console.log(snapshot.data());
    await updateDoc(doc(dbService, "results", result), {
      total: snapshot.data()?.total + 1,
    });
  };
profile
안녕하시오.

0개의 댓글