var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var notificationsSchema = mongoose.Schema({
"datetime" : {
type: Date,
default: Date.now
},
"ownerId":{
type:String
},
"customerId" : {
type:String
},
"title" : {
type:String
},
"message" : {
type:String
}
});
var notifications = module.exports = mongoose.model('notifications', notificationsSchema);
module.exports.saveNotification = function(notificationObj, callback){
//notifications.insert(notificationObj); won't work
//notifications.save(notificationObj); won't work
notifications.create(notificationObj); //work but created duplicated document
}
私の場合、挿入と保存がうまくいかない理由は何ですか?私は作成しようとしましたが、1の代わりに2つのドキュメントを挿入しました。それは変です。mongoose save vs insert vs create
同じ問題を何度も投稿すると助けにならないhttp://stackoverflow.com/questions/38290506/mongoose-create-created-multiple-document ... – DAXaholic
@DAXaholicあなたは私の問題について何か手掛かりを持っていますか? ? –
@MariaJane cud uは、 'notificationObj'として渡されたオブジェクトの宣言を表示します。 – Iceman