要查询MongoDB中的指定字段,可以使用find()方法,并在参数中指定要返回的字段。
以下是查询指定字段的示例代码:
# 引入pymongo模块from pymongo import MongoClient# 连接MongoDB数据库client = MongoClient('mongodb://localhost:27017/')# 选择数据库db = client['mydatabase']# 选择集合collection = db['mycollection']# 查询指定字段result = collection.find({}, {'_id': 0, 'name': 1, 'age': 1})# 输出查询结果for document in result:print(document)在上面的示例中,我们通过find()方法查询所有文档,并在第二个参数中指定要返回的字段。参数的形式为{'字段名': 1},其中1表示要返回该字段,0表示不返回该字段。
在示例中,我们查询了name和age字段,并且禁用了默认返回的_id字段。

