0

我想在不使用流生成器的情况下从 firestore 集合中获取所有文档,否则我将拥有嵌套流,并且在最后一个流中我得到一个空值。初始数据没有解决我的问题。

Now I make a stream builder for that collection, when a snapshot is chosen I jump on other widget and there I also make a stream builder and here is the problem.

我只想在场景的最后一个小部件中制作流构建器,因为只需要实时数据更新。

4

2 回答 2

2

您可以通过以下方法使用 FutureBuilder

await Firestore.instance.collection("books").getDocuments()
于 2019-10-29T11:28:50.350 回答
0

使用此获取实时数据:

 Firestore.instance
    .collection('books').snapshots().listen((querySnapshot){

});
于 2019-10-29T12:49:46.477 回答