javascript 使用Mongoose过滤

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 使用Mongoose过滤相关的知识,希望对你有一定的参考价值。

exports.getAllTours = async (req, res) => {
  
  try{
    const tours = await Tour.find()
      .where('duration')
      .equals(5)
      .where('difficulty')
      .equals('easy');
  }
  catch(err){}
}

以上是关于javascript 使用Mongoose过滤的主要内容,如果未能解决你的问题,请参考以下文章

MongoDB使用基于子文档的Mongoose过滤器

Mongoose - 使用 findOneAndUpdate 和数组过滤器只返回更新的项目

在 Mongoose 中使用连接和过滤器进行查询

Mongoose 聚合不按输入日期过滤

Mongoose 聚合不按输入日期过滤

如何使用 Mongoose 查询过滤到数组类型字段中具有指定值的文档?