繁体   English   中英

猫鼬在找不到指定字段的情况下创建文档,如果找到则更新文档中的数组

[英]Mongoose create a document if not found with specified fields, if found update an array in the document

我正在使用猫鼬,如果文件不存在,我会遇到创建文档的问题,如果存在,我想更新文档中的数组。

例如,如果我有

var courseSchema = new mongoose.Schema({
    code : { type: String },
    name : { type: String },
    dept : { type: String },
    instructors : [{ type : mongoose.Schema.ObjectId, ref: 'User' }],
});

var Course = mongoose.model('Course', courseSchema);

...
...
// This code should check if a course exists with a specified 'code' and 
// 'name' and , if it exist, I want to add req.body.instructor_id to
// instructor array in that document, else I want to create a document with
// the specified course, name(and dept) and with req.body.instructor_id as the only element in
// the instructors array

// So far I have this, but it is clearly wrong.


Course.findOneAndUpdate(
    {code: req.body.code, name: req.body.name},
    {$push: {instructors: req.user._id}},
    {upsert: true},
    function (err, course) {
        if (err)
            console.log("error " + err);
        else {
            console.log(JSON.stringify(course, null, '\t'));
        }
    }
);

第二个参数应该是整个对象,而不仅仅是讲师。 例如:

function findOneAndUpdateCourse(req, callback){
    Course.findOneAndUpdate(
        {code: req.body.code, name: req.body.name},
        { 
          $setOnInsert: { code: req.body.code},
          $setOnInsert: { name: req.body.name},
          $push: {instructors: req.user._id}}
        },
        {upsert: true},
        function (err, course) {
            if (err)
                console.log("error " + err);
            else {
                console.log(JSON.stringify(course, null, '\t'));
            }
        }
    );
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM