如果您只有该文档的文档引用,如何查看该文档的 json 数据?

问题描述 投票:0回答:1

我只有一份文档的文档参考。从该引用中,我想检索 firebase 中为该文档存储的数据。我正在使用颤振。

flutter firebase
1个回答
0
投票

只需使用该参考文献的

get()
方法即可:

docRef
.get()
.then((DocumentSnapshot documentSnapshot) {
  if(documentSnapshot.exists){
     print(documentSnapshot.data());
    }
  }
});
© www.soinside.com 2019 - 2024. All rights reserved.