共计 461 个字符,预计需要花费 2 分钟才能阅读完成。
要查询 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 字段。
丸趣 TV 网 – 提供最优质的资源集合!
正文完