Firestore.instance
.collection(this.collection)
.where('total', isEqualTo: 15)
.orderBy(this.orderByKey, descending: true)
.limit(limit)
.getDocuments();
如果where
和orderBy
结合在一起,则会显示以下错误
NosuchMethodError:在null上调用了getter'length'。
如果删除了where
或orderBy
,则可以正常工作。