mongoose
sẽ bình thường hóa tên của bộ sưu tập thành chữ thường và số nhiều. Do đó, bạn nên chèn vào db.samplecollections
thay vì db.sampleCollection
. (Lưu ý sự khác biệt của chữ cái c
và s
tại đây).
để kiểm tra nó:
s = new sampleCollection({sampleField: 'hello'}); // creates a new record
s.save(function(err) {
sampleCollection.find({ } , function (err, items) {
console.log(items);
console.log(err);
items.forEach( function(item) {
console.log(item);
});
});
});
và nó in đúng cách:
[ { sampleField: 'hello', _id: 4f28ab4cc9e58f710a000001 } ]
null
{ sampleField: 'hello', _id: 4f28ab4cc9e58f710a000001 }
sau đó trong trình bao mongo:
> show collections
samplecollections //<<<<<<<<<<<<<< It's all lowercase and pluralized
system.indexes
> db.samplecollections.find()
{ "sampleField" : "hello", "_id" : ObjectId("4f28ab4cc9e58f710a000001") }