有什么方法可以将自动生成的文档ID设置为名为ID的文档字段?

时间:2019-11-01 14:37:12

标签: angular firebase google-cloud-firestore angularfire2

我正在使用firebase,anguarfire2,并且想要在集合中创建新文档时将生成的ID也保存在名为id的字段中?有可能吗?

1 个答案:

答案 0 :(得分:0)

Firebase Javascript库的方法和语法如下。对于AngularFire2,应该几乎相同。

const docRef = await firestore()
    .collection("some-collecton")
    .doc();
  await docRef.set({ id: docRef.id, ...otherDocumentData });