Docs 主页 → 开发应用程序 → Python 驱动程序 → pymongo
指定要返回的字段
Overview
在本指南中,您可以了解如何使用投影指定从读取操作中返回哪些字段。 投影是指定 MongoDB 从查询中返回哪些字段的文档。
样本数据
本指南中的示例使用 Atlas 样本数据集中的 sample_restaurants.restaurants
集合。 要了解如何创建免费的MongoDB Atlas cluster并加载样本数据集,请参阅PyMongo入门指南。
投影类型
您可以使用投影来指定要在返回文档中包含哪些字段,或指定要排除哪些字段。 除非要排除_id
字段,否则不能在单个投影中组合包含和排除语句。
指定要包含的字段
使用以下语法指定要包含在结果中的字段:
{ "<Field Name>": 1 }
以下示例使用find()
方法查找name
字段值为"Emerald Pub"
的所有餐厅。 然后,它使用投影仅返回所返回文档中的name
、 cuisine
和borough
字段。
results = restaurants.find({ "name" : "Emerald Pub"}, {"name": 1, "cuisine": 1, "borough": 1}) for restaurant in results: print(restaurant)
{'_id': ObjectId('...'), 'borough': 'Manhattan', 'cuisine': 'American', 'name': 'Emerald Pub'} {'_id': ObjectId('...'), 'borough': 'Queens', 'cuisine': 'American', 'name': 'Emerald Pub'}
当您使用投影指定要包含在返回文档中的字段时,默认情况下还会包含_id
字段。 所有其他字段均会隐式排除。 要从返回文档中删除_id
字段,您必须明确将其排除。
排除_id
字段
在指定要包含的字段时,您还可以从返回的文档中排除_id
字段。
以下示例执行与前面的示例相同的查询,但从投影中排除_id
字段:
results = restaurants.find({ "name" : "Emerald Pub"}, {"_id": 0, "name": 1, "cuisine": 1, "borough": 1}) for restaurant in results: print(restaurant)
{'borough': 'Manhattan', 'cuisine': 'American', 'name': 'Emerald Pub'} {'borough': 'Queens', 'cuisine': 'American', 'name': 'Emerald Pub'}
指定要排除的字段
使用以下语法指定要从结果中排除的字段:
{ "<Field Name>": 0 }
以下示例使用find()
方法查找name
字段值为"Emerald Pub"
的所有餐厅。 然后,它使用投影从返回的文档中排除grades
和address
字段:
results = restaurants.find({ "name" : "Emerald Pub"}, {"grades": 0, "address": 0} ) for restaurant in results: print(restaurant)
{'_id': ObjectId('...'), 'borough': 'Manhattan', 'cuisine': 'American', 'name': 'Emerald Pub', 'restaurant_id': '40367329'} {'_id': ObjectId('...'), 'borough': 'Queens', 'cuisine': 'American', 'name': 'Emerald Pub', 'restaurant_id': '40668598'}
当您使用投影指定要排除的字段时,任何未指定的字段都将隐式包含在返回文档中。
故障排除
以下部分描述了使用投影时可能遇到的错误。
“无法对包含投影中的字段 <field> 进行排除”
如果尝试在单个投影中包含和排除字段,驱动程序会返回OperationFailure
并包含此消息。 确保投影仅指定要包含的字段或要排除的字段。
更多信息
要了解有关投影的更多信息,请参阅 MongoDB Server 手册中的项目字段指南。
API 文档
要进一步了解本指南所讨论的任何方法或类型,请参阅以下 API 文档: