我正在使用Stream stream
在使用Firestore数据库的Flutter应用程序中检索文档列表,因为要根据某些条件来检索文档,因此需要更改查询。
使用Query query
时我们可以拥有
QuerySnapshot qs = await query.getDocuments
在分页过程中很有用。
当我使用Stream stream
进行变量查询时,我怎么能拥有与之等效的东西
QuerySnapshot qs = await query.getDocuments
以便我可以用于分页。
请指导我
答案 0 :(得分:0)
您可以使用query.snapshots
获取QuerySnapshot
实例的流。
https://pub.dev/documentation/cloud_firestore/latest/cloud_firestore/Query/snapshots.html