如果我有这种图式。
person = {
name : String,
favoriteFoods : Array
}
... 其中favoriteFoods数组用字符串填充。我怎样用猫鼬找到所有喜欢吃“寿司”的人?
我希望你能说出这样的话:
PersonModel.find({ favoriteFoods : { $contains : "sushi" }, function(...) {...});
(我知道mongodb中没有$contains,只是解释了我在知道解决方案之前希望找到什么)
我觉得在这种情况下用$all更合适。如果你正在寻找一个喜欢吃寿司的人,你可以:
PersonModel.find({ favoriteFood : { $all : ["sushi"] }, ...})
因为你可能想过滤更多的搜索,像这样:
PersonModel.find({ favoriteFood : { $all : ["sushi", "bananas"] }, ...})
$in是OR, $all是and。检查这个:https://docs.mongodb.com/manual/reference/operator/query/all/
我觉得在这种情况下用$all更合适。如果你正在寻找一个喜欢吃寿司的人,你可以:
PersonModel.find({ favoriteFood : { $all : ["sushi"] }, ...})
因为你可能想过滤更多的搜索,像这样:
PersonModel.find({ favoriteFood : { $all : ["sushi", "bananas"] }, ...})
$in是OR, $all是and。检查这个:https://docs.mongodb.com/manual/reference/operator/query/all/