0

所以我有以下架构:

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是正确的。

4

1 回答 1

0

我终于让它工作了,但是我确实需要父 _id 来做到这一点:

Round.update({"_id": req.params.roundId}, {$pull: {"questions": {"_id": req.params.questionId}}},function cb(err) {
            if(err){
                res.sendStatus(500);
                return console.log("An error occured when trying to remove a question!", err);
            }
            return res.end();
        });

如果有人知道不需要 parentId 的方法,请告诉。

编辑:找到它,只需将正确的参数值替换_idquestions._idandoffcourse

于 2015-02-17T09:52:23.143 回答