데이터 베이스/MONGODB
mongoose query(1)
세얼간이코딩
2020. 6. 20. 23:20
반응형
https://mongoosejs.com/docs/api/query.html
model.find({})
는 model의 정보를 가져옵니다.
// named john and at least 18
MyModel.find({ name: 'john', age: { $gte: 18 }});
// executes, passing results to callback
MyModel.find({ name: 'john', age: { $gte: 18 }}, function (err, docs) {});
find안에 세부설정을 정할 수 있습니다.
model.findById(id)
id를 받아와서 id와 일치하는 정보를 찾습니다.
반응형