$ unwind嵌套文档和$ match

时间:2017-04-02 13:33:06

标签: node.js mongodb mongoose nested-queries subdocument

我有一个嵌套文档,如下所示:

    var User = new Schema({
    id: String,
    position: [{
        title: String,
           applied:[{
                candidate_id: String,
                name: String
        }],
        }],

我要做的是返回与某个'candidate_id'匹配的所有'已应用'子文档

到目前为止我所拥有的:

  app.get('/applied', function(req, res){

  var position = "58dc2bd4e7208a3ea143959e";

  User.aggregate(
        {$unwind : "$position"},
        {$unwind : "$position.applied"},
        {$match:{'position.applied.candidate_id': position}}).exec(function (err, result) {
          console.log(result);
        });
        res.render('applied', { title: 'applied',layout:'candidate'});
});

我有另一个函数返回匹配的所有位置,该代码有效:

app.post('/search', function (req, res) {

  var position = new RegExp(req.body.position, 'i');
  var location = new RegExp(req.body.location, 'i');

  User.aggregate(
        {$unwind : "$position"},
        {$match:{'position.title': position,'position.location':location}}).exec(function (err, result) {
      console.log(result);
      res.send({ results: result });
  });
});

所以基本上我正在努力获得一个子文档。知道我哪里错了吗?

示例数据:

{
"_id" : ObjectId("58c2871414cd3d209abf5fc9"),
"position" : [ 
    {
        "_id" : ObjectId("58d6b7e11e793c9a506ffe8f"),
        "title" : "Software Engineer",

        "applied" : [ 
            {
                "candidate_id" : "58d153e97e3317291gd80087",
                "name" : "Sample user"

            }, 
            {
                "candidate_id" : "58d153e97e3317291fd99001",
                "name" : "Sample User2"

            }
        ]
    }, 
    {
        "_id" : ObjectId("58c2871414cd3d209abf5fc0"),
        "title" : "Software Engineer",

    }
],

}

上面发生的是有2个位置,其中一个(第一个条目)有2个应用候选者,我需要做的是返回嵌套对象,如果它与mongoose查询匹配。

1 个答案:

答案 0 :(得分:1)

你的代码对我来说似乎很好我已经实现了它并且它对我有用只有可能的问题可能是你的 position =“58dc2bd4e7208a3ea143959e”它可能会将它作为一个字符串将其转换为objectId通过使用以下代码并检查它应该适合您。

var mongoose = require('mongoose');

     var position = mongoose.Types.ObjectId("58dc2bd4e7208a3ea143959e");

          User.aggregate(
                {$unwind : "$position"},
                {$unwind : "$position.applied"},
                {$match:{'position.applied.candidate_id': position}}).exec(function (err, result) {
                  console.log(result);
                });
                res.render('applied', { title: 'applied',layout:'candidate'});
        });