0

我的数据库示例:

{
  name: 'The Perks of Being a Wallflower'
  genres: ['Drama', 'Romance']
  rating: 8
}, 
{
  name: 'The Edge of Seventeen'
  genres: ['Drama', 'Comedy']
  rating: 7.3
},
{
  name: 'Little Women',
  genres: ['Drama', 'Romance']
  rating: 7.8
}

Comedy 如果它是or ,我想投影流派数组的第一个元素Romance
我试过这个:

db.shows.find(
  {},
  { genres: { $elemMatch: { $or: [{ $eq: 'Drama' }, {$eq: 'Comedy'}] } } }
);

但它给了我这个错误“未知的顶级运算符:$eq”。

4

1 回答 1

2

使用$in

$in 运算符选择字段值等于指定数组中的任何值的文档。要指定 $in 表达式,请使用以下原型:

演示 - https://mongoplayground.net/p/MAuWUeP9GIE

db.collection.find({
  genres: {
    $elemMatch: {
      "$in": [ "Drama", "Comedy" ]
    }
  }
})

演示 - https://mongoplayground.net/p/JJJkoHuz_DZ

db.collection.find({},
{
  genres: {
    $elemMatch: {
      "$in": [ "Drama", "Comedy" ]
    }
  }
})
于 2021-04-01T10:29:40.477 回答