gpt4 book ai didi

firebase - Firestore 查询 orderBy 不起作用?

转载 作者:行者123 更新时间:2023-12-03 18:41:04 24 4
gpt4 key购买 nike

FutureBuilder 在类型时间戳字段上使用 Firestore 查询返回快照中没有数据。但是,没有 orderBy 的相同查询工作得很好。
我错过了什么?谢谢您的帮助。

// Working code
future: Firestore.instance.collection('messages').where('toid',isEqualTo: _emailID).getDocuments(),
builder: (context, snapshot) ...

// Not Working - returns to if(!snapshot.hasData)
future: Firestore.instance.collection('messages').where('toid',isEqualTo: _emailID).orderBy('_timeStampUTC', descending: true).getDocuments(),
builder: (context, snapshot) ...

enter image description here

最佳答案

我认为您缺少一个 '这里'_timeStampUTC ,所以应该是:

 orderBy('_timeStampUTC', descending: true)

编辑:

此外,您需要确保为 toid 创建索引。和其他 _timeStampUTC ,这是在您尝试按不在您查询的位置中的属性进行排序时完成的。

关于firebase - Firestore 查询 orderBy 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51434167/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com