node.js - 如何更新 Mongoose 中的特定字段?

我有一个数据集

var JobSchema = Schema({
  candidates: [{
    user: { type: Schema.Types.ObjectId, ref: 'User'},
    status: { type: String, default: 'In Progress' },
  }]
});

我想查找特定job的_id并更新特定候选人的字段,例如{ _id: 123, user: 12345, status: "In Progress"}

这个操作的url是---> localhost:3000/apply/:job_id/user_id

例如

假设这是作业mongodb中当前保存的数据

  { 
   "_id" : 123, ---> job_id

   "candidates" : 
     [{ 
        "_id" : 234 , 
        "user": 345 , --> user_id
        "status" : "In Progress" 
     }, 

       { 
        "_id" : 345 , 
        "user": 678 , --> user_id
        "status" : "In Progress" 
      }]
    "__v" : 0 
  }

我如何只更新一个特定的字段,比如说 status 字段属于 mongodb 中某个候选人的 _id,这是我的尝试

          Job.update(
                    {
                        _id: req.params.job_id,
                    },
                    {
                        $set: {'candidates.$.status': 'Accepted'} ,
                    }, function(err, count) {
                        if (err) return next(err);
                        callback(err, count);
                    });

如果我使用上面的操作,我会得到这个错误。

MongoError:位置运算符未从查询中找到所需的匹配项。未扩展更新:candidate.$.status

最佳答案

$是解决方案:

Job.update(
    { 
        _id: found._id, 
        'candidates.user': req.params.user_id
    },
    {
        $set: { 'candidates.$.status': 'Accepted'} },
    }, function(err, count) {
           if (err) return next(err);
           callback(err, count);
});

https://stackoverflow.com/questions/33742316/

相关文章:

MongoDb区域副本集 - 每个区域的主节点?

php - Wamp x64 (win x64) 上的 MongoDB = mongo.native

javascript - 在 MongoDB 中使用原生 ES6 Promise

javascript - 在 mongo 中查找上周创建的对象

java - MongoRepository findByCreatedAtBetween 没有返回

java - 如何在 mongodb 和 Java 中 $and 两个文档?

java - 如何在 play framework 2.3 中编写 cron 作业

mongodb - 在 golang 中连接到远程 mongodb 服务器失败,出现身份验证错误

node.js - mongoose中的位置,mongoDB

javascript - 如何使用 Stripe 在一个操作中同时创建客户和卡片?