我使用Mongoose 3.4.0和MongoDB 2.0.6。
我有以下模式:
var Database = module.exports = function Database(){};
Database.prototype = {
_model : {},
_schema: {
Comment : new Schema ({
_id : ObjectId,
comment : { type : String },
date : { type : Date, default : Date.now },
userId : { type : Schema.ObjectId, ref : 'User' },
nickname : { type : String },
profileLinkAn : { type : String },
profileLinkIos : { type : String }
}),
Game : new Schema ({
roomName : { type : String },
openTime : { type : Date },
closeTime : { type : Date, index : true },
minPlayers : { type : Number },
maxPlayers : { type : Number},
numberOfPlayers : { type : Number, default : 0 },
winner : { userId : { type : Schema.ObjectId, ref : 'User'} },
runrUp : { userId : { type : Schema.ObjectId, ref : 'User' } },
semiFn : [ { type : Schema.ObjectId, ref : 'User'} ],
qtrFn : [ { type : Schema.ObjectId, ref : 'User' } ],
rnd16 : [ { type : Schema.ObjectId, ref : 'User' } ],
rnd32 : [ { type : Schema.ObjectId, ref : 'User' } ],
prize : [ this.Prize ],
tag : [ { type : String, index : true } ],
status : { type : Number, index : true },
businessType : { type : Number },
mallId : { type : Schema.ObjectId, ref : 'Mall', index : true },
registeredPlayers : [ { type : ObjectId, ref : 'User' } ],
thumbnailImage : [ this.PrizeDetailImage ],
gamePrice : { type : Number },
slotPrice : { type : Number },
comment : [ this.Comment ],
commentCnt : { type : Number, default : 0 },
wantUid : [ { type : Schema.ObjectId, ref : 'User' } ],
wantCnt : { type : Number, default : 0 }
})
},
connect : function(url) {
mongoose.connect(url);
this._model.Comment = mongoose.model('Comment',this._schema.Comment);
this._model.Game = mongoose.model('Game', this._schema.Game);
},
model : function(model) {
switch (model) {
case 'Comment':
return this._model.Comment;
case 'Game':
return this._model.Game;
}
}
}
字符串
上面的代码来自Database.js。下面的代码来自我的express应用程序。为了简洁起见,我省略了一些代码。我遇到的问题似乎与查询有关。
var Game = this.db.model('Game');
Game.update({ _id : req.body._id }, { $pull : { comment : { _id : req.body.commentId } } }, function (err,numAffected,raw) {
if(err)
{
res.json({ data : { success : false } });
}
else
{
console.log(raw);
res.json({ data : { success : true } });
}
});
型
我没有得到错误消息,Mongo的原始输出是:
{ updatedExisting: true,
n: 1,
connectionId: 78912,
err: null,
ok: 1 }
型
但是当我查看我的集合的内容时,子文档仍然存在。我已经尝试使用本机驱动程序,但没有运气。我在我的架构中做错了什么吗?提前感谢您花时间查看这一点。
/肯利
1条答案
按热度按时间gwbalxhn1#
好吧,我是被 Mongoose 谷歌小组的维克托指出这一点的,所以向他致敬。事实证明, Mongoose 并没有自动将ObjectId转换为ObjectId。
这是查询现在的样子:
字符串
如果有人想知道,我把它添加到我的数据库原型中,这样我就可以在任何地方访问ObjectId类型。
型
希望这能帮助任何有类似问题的人。