标签: firebase google-cloud-firestore
在我的firestore集合中,我有10个文档,其字段为numberOfUsers。所有这些都设置为1。当我尝试执行startAfter查询时,第二个查询中未返回任何内容。第一个文件(startAfter:{})工作正常,它返回3个文档,但是当startAfter: documentSnapshot时,什么也不返回(没有错误)。
numberOfUsers
1
startAfter: documentSnapshot
我知道这是因为我要对所有文档使用相同的字段进行排序,就像我对所有文档都使用不同的字段(时间戳)进行排序一样。
如何解决这个问题?