所以我有以下架构:
var questionsSchema = new Schema({
nr: Number,
points: Number,
description: String,
groups: [{
type: Schema.Types.ObjectId,
ref: 'Group',
default: []
}],
createdOn: {type: Date, default: Date.now()},
isActive: {type: Boolean, default: true}
});
var roundSchema = new Schema({
name: String,
index: Number,
questions: [ questionsSchema ]
});
现在我有一个操作来删除一个问题(问题是唯一的)而没有轮(父)_id。
我在这里查看了如何从数组中提取元素,但是我根本找不到正确的方法来做到这一点,在链接中它是一个非文档数组,所以这与我的情况有点不同。
我试过的:
function removeQuestionById(req, res) {
Round.update({"questions._id": req.params.id}, {$pull: {"questions._id": req.params.id}}, function(err, rowsAffected){
if(err){
res.sendStatus(500);
return console.log("An error occured when trying to remove a question!", err);
}
console.log("Amount of rows affected was " + rowsAffected);
return res.end();
})
}
没用,所以我假设我只需要在更新语句中指定子文档的字段:
function removeQuestionById(req, res) {
Round.update({"questions._id": req.params.id}, {$pull: {"_id": req.params.id}}, function(err, rowsAffected){
if(err){
res.sendStatus(500);
return console.log("An error occured when trying to remove a question!", err);
}
console.log("Amount of rows affected was " + rowsAffected);
return res.end();
})
}
也没有工作,我在这两种情况下受影响的行数都是 0。在过去的几个小时里,我尝试了其他几件事,但都没有工作。
注意:请求对象中的问题_id是正确的。