mongoose コレクション名 指定方法は
以下のソースの
lower case of collection_name+s
のところでコレクションを指定することである。
ここで気をつけなければならないことは、
小文字で最後に”s”をつける必要があることである。
そのため、mongoに作るコレクションの名前も同様のものでなければ
目的のコレクションに接続できない。
var EventRelation, db, mongoose;
mongoose = require('mongoose');
db = mongoose.connect('mongodb://localhost/db_name',
function(err) {
if (err) {
console.log(err);
} else {
console.log('Connection Success!');
}
}
);
DBSchema = new mongoose.Schema({
id : Number,
update_time : Date
});
exports.testDB = db.model('lower case of collection_name+s', DBSchema);