如何显式设置新创建的 GeoFireStore 文档的 ID?
How to explicitly set the ID of newly created GeoFireStore document?
Add 方法无法在创建文档时设置 ID,也没有 set() 方法。
有什么方法可以设置新文档的ID吗?
您可以通过调用 doc("id") to specify the ID of the document. With that GeoDocumentReference, you can call its set() 方法从 GeoCollectionReference 生成新的 GeoDocumentReference 以创建该文档并将数据写入其中。
这与 Firestore 的正常 JavaScript API 完全一样。
Add 方法无法在创建文档时设置 ID,也没有 set() 方法。
有什么方法可以设置新文档的ID吗?
您可以通过调用 doc("id") to specify the ID of the document. With that GeoDocumentReference, you can call its set() 方法从 GeoCollectionReference 生成新的 GeoDocumentReference 以创建该文档并将数据写入其中。
这与 Firestore 的正常 JavaScript API 完全一样。