无法在扑扑的Firebase中一起使用Where和orderBy

时间:2019-10-05 07:14:46

标签: firebase flutter dart


Firestore.instance
.collection(this.collection)
.where('total', isEqualTo: 15)
.orderBy(this.orderByKey, descending: true)
.limit(limit)
.getDocuments();

如果whereorderBy结合在一起,则会显示以下错误

  

NosuchMethodError:在null上调用了getter'length'。

如果删除了whereorderBy,则可以正常工作。

0 个答案:

没有答案