0
我正在使用貓鼬來操作mongodb。現在我想將一組條目(對象數組)保存爲collcetion。如何使用貓鼬將一組條目插入到mongodb中
我發現了下面給出的例子,但我認爲我可以通過使用save()只保存一個對象。
var arvind = new User({
name : 'Arvind',
age : 99,
DOB : '01/01/1915',
isAlive : true
});
arvind.save(function (err, data) {
if (err) console.log(err);
else console.log('Saved : ', data);
});
我應該使用哪種方法將條目集保存到集合中? 在此先感謝。