gpt4 book ai didi

python - pymongo+MongoDB : How to find _id in pymongo?

转载 作者:可可西里 更新时间:2023-11-01 10:51:29 25 4
gpt4 key购买 nike

我想找到集合 (mycol) 中的文档的 _id,其中 "name":"John"。我已插入文档,但想找到文档的 _id。可能吗 ?我正在尝试

result = db.mycol.find({"_id": {"name": "John"}})

但它返回的是一个游标对象。

pymongo.cursor.Cursor object at 0x00000000030E3DD8>

然后我试了一下

for itm in result:
print (itm)

但它没有打印任何东西。

最佳答案

试试吧

result = db.mycol.find({"name": "John"})
for item in result:
print(item['_id'])

看看docs查看如何使用 pymongo

关于python - pymongo+MongoDB : How to find _id in pymongo?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39565253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com