gpt4 book ai didi

google-cloud-firestore - Firestore - batch.add 不是函数

转载 作者:行者123 更新时间:2023-12-03 07:54:10 24 4
gpt4 key购买 nike

documentation仅用于 Firestore 批量写入列表 set() , update()delete()作为允许的操作。

有没有办法添加add()操作到批处理?我需要使用自动生成的 ID 创建一个文档。

最佳答案

您可以分两步执行此操作:

// Create a ref with auto-generated ID
var newCityRef = db.collection('cities').doc();

// ...

// Add it in the batch
batch.set(newCityRef, { name: 'New York City' });
.doc()方法不会向网络或磁盘写入任何内容,它只是使用自动生成的 ID 进行引用,您可以稍后使用。

关于google-cloud-firestore - Firestore - batch.add 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46725357/

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