我只有一份文档的文档参考。从该引用中,我想检索 firebase 中为该文档存储的数据。我正在使用颤振。
只需使用该参考文献的
get()
docRef .get() .then((DocumentSnapshot documentSnapshot) { if(documentSnapshot.exists){ print(documentSnapshot.data()); } } });