最佳答案
是否可以在 $匹配中执行 OR 操作?
我的意思是这样的:
db.articles.aggregate(
{ $or: [ $match : { author : "dave" }, $match : { author : "john" }] }
);