mongoose query(2)
2020. 6. 23.
https://mongoosejs.com/docs/api.html#model_Model.create Mongoose v5.9.20: API docs mongoosejs.com Candy.create({ type: 'jelly bean' }, { type: 'snickers' }, function (err, jellybean, snickers) { if (err) // ... }); 데이터베이스에 작성하기위한 create입니다. 스키마 생성후 쓰시면 데이터베이스에 저장하실 수 있습니다. Model.findOneAndUpdate(query, { name: 'jason bourne' }, options, callback) mongodb의 findAndModify 업데이트 명령어를 수행합니다. update를 사..