-1
私はいくつかのデータをMongooseで保存していますが、どこに保存されているのかわかりません。このデータはMongoDbにどこに保存されていますか?どのテーブルやコレクションに?MongoDBにはどのようなスキーマデータが保存されていますか?
var Chat = mongoose.model('Chat', ChatSchema);
console.log('Message Received: ', msg);
var data = [{
sent: new Date(),
room: 'General',
username: 'Chris',
text: msg
}]
//Loop through each of the chat data and insert into the database
for (var c = 0; c < data.length; c++) {
//Create an instance of the chat model
var entry = new Chat(data[c]);
//Call save to insert the chat
entry.save(function(err, savedChat) {
console.log(savedChat);
});
}
それはあなたがムースで指定されたどんなコレクションに保存する必要があります –