猫鼬 - 使用findOne增加

时间:2013-05-03 09:51:25

标签: node.js mongoose

我正在使用Mongoose进行一些查询,我需要跳过并限制子文档,但在同一个查询中我想在文档中增加一些字段。目前我的查询是用链接构建的,因为当我尝试使用选项时,我遇到了很多问题。这就是我所拥有的:

Model.findOne({ shorten_id: id }).select('title content comments views').slice('comments', [0, 10]).exec(function(err, db_res) { if (err) { throw err; } else { console.log(db_res); } });

我想在调用此查询时增加1的“视图”,但正如我所说,我尝试了很多东西而且它没有用。

1 个答案:

答案 0 :(得分:18)

您可以使用findOneAndUpdate修改文档,同时也可以获取文档。

Model.findOneAndUpdate({ shorten_id: id }, { $inc: { fieldToIncrement: 1 })
  .select('title content comments views')
  .slice('comments', [0, 10])
  .exec(function(err, db_res) { 
    if (err) { 
      throw err; 
    } 
    else { 
      console.log(db_res); 
    } 
  });
相关问题