gpt4 book ai didi

python - Cloud Firestore - Python - 执行简单的 Where 查询始终返回 Query 对象

转载 作者:行者123 更新时间:2023-12-05 01:16:37 24 4
gpt4 key购买 nike

我知道这个问题听起来可能很愚蠢,但我如何使用 Firebase Admin SDK (Cloud Firestore) 和 Python 正确查询数据?

是的,我已经阅读了这里的文档:

我的数据库:

Database

我的代码:

existing_post = db.collection(u'posts').where(u'id', u'==', u'BpzIbkqAkk0').get()
print(existing_post)

我也尝试省略 .get() 方法,但每次都得到相同的结果。

我得到的只是

<google.cloud.firestore_v1beta1.query.Query object at 0x10e7aab00>

有什么想法吗?

最佳答案

@Gerardo 的评论将我引向了正确的方向。这是工作代码:

existing_posts = db.collection(u'posts').where(u'id', u'==', u'BpzIbkqAkk0').get()
for post in existing_posts:
print(u'{} => {}'.format(post.id, post.to_dict()))

关于python - Cloud Firestore - Python - 执行简单的 Where 查询始终返回 Query 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53166661/

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