gpt4 book ai didi

python - 只听 python 中云 firestore 集合的添加

转载 作者:太空宇宙 更新时间:2023-11-04 00:01:02 25 4
gpt4 key购买 nike

只有在将新文档添加到 Firebase 中的特定集合时,代码才会触发。

我已经找到一个 answer对于 javascript 中的这个问题,但我无法找出 python 的解决方案。

最佳答案

documentation包含如何执行此操作的示例(查看“python”选项卡):

def on_snapshot(col_snapshot, changes, read_time):
print(u'Callback received query snapshot.')
print(u'Current cities in California: ')
for change in changes:
if change.type.name == 'ADDED':
print(u'New city: {}'.format(change.document.id))
# Removed other cases

col_query = db.collection(u'cities').where(u'state', u'==', u'CA')

# Watch the collection query
query_watch = col_query.on_snapshot(on_snapshot)

关于python - 只听 python 中云 firestore 集合的添加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55727440/

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