目前已见的操作符 聚合操作符 $match 用于过滤数据,只输出符合条件的文档。$match使用MongoDB的标准查询操作 $sort 将输入文档排序后输出 {'$match': {'birthday': {'$gt': birthday_start}}} {'$match': {'birthday': {'$lt': birthday_end}}} {'$match': {'age': {'$gte': age_list[0]}}} {'$match': {'year': year}} {'$match': {'user_id': int(user_id)}} {'$sort': {sor...