如何将新文档批量添加到集合中?

时间:2020-10-29 23:30:21

标签: javascript firebase google-cloud-firestore

我如何使用“批处理”将新文档添加到集合中?这是我的代码,该代码工作得很好,但是我必须使用批处理。

await scholarRef
              .doc(sc.id)
              .collection('uniforms')
              .add(uniform)

我正在尝试批量处理,不起作用

const uniforms= await scholarRef
                  .doc(sc.id)
                  .collection('uniforms')
batch.set(uniforms, uniform)

但是不起作用,怎么了?

1 个答案:

答案 0 :(得分:0)

更改批次中的文档后,您需要commit

await batch.commit()