7th May 2021 Node.js/MongoDB 정리2

알파·2021년 5월 7일
0

Node.js

목록 보기
6/6

DB 데이터 가져오기

collection 안에 있는 모든 데이터 가져오기

db.collection('post').find().toArray(function(error, result){
        console.log(result);
    });

꺼낸 데이터 EJS 파일에 집어넣기

profile
I am what I repeatedly do

0개의 댓글