TIL | Dec 29 (Wed), 2021

TIL | Dec 29 (Wed), 2021

실전 프로젝트 API 구현 (95% 완성 -> 구현 로직 생각중인거 2개 해결해야함)

프론트에서 요청한 방식대로 res 에 필요한 데이터만 보내는 방법 터득

코드나 쿼리가 복잡하지 않고, 데이터 컬럼이 많을 경우 직관적이지 못했는데... 왜 지금 안걸까 ㅠㅠ

const giftQuestionPersonality = await giftQuestions.find( { giftQuestionType: "personality"}, { _id: false, giftQuestionType: false } // 필요 없는 부분 false 로! );​

=> mongoDB의 find { 조회할 데이터 데이터 }, { 조회할 데이터에서 가져올 것 또는 가져오지 않을 것 표시}

from http://create-something-from-nothing.tistory.com/186 by ccl(A) rewrite - 2021-12-31 00:00:44