我如何使用“批处理”将新文档添加到集合中?这是我的代码,该代码工作得很好,但是我必须使用批处理。
await scholarRef
.doc(sc.id)
.collection('uniforms')
.add(uniform)
我正在尝试批量处理,不起作用
const uniforms= await scholarRef
.doc(sc.id)
.collection('uniforms')
batch.set(uniforms, uniform)
但是不起作用,怎么了?