是否有方法获取在向集合添加文档后生成的文档 ID?
如果我将一个文档添加到代表社交媒体应用程序中的“ post”的集合中,我希望获得该文档 ID,并将其用作另一个集合中的另一个文档中的字段。
如果我不能得到在添加文档后生成的文档 ID,那么我是否应该计算一个随机字符串并在创建文档时提供 Id?这样我可以使用相同的字符串作为字段在我的其他文档?
快速结构示例:
POST (collection)
Document Id - randomly generated by firebase or by me
USER (collection)
Document Id - randomly generated by firebase
userPost: String (this will be the document id
in the post collection that I'm trying to get)