我在我的问题上做了什么可怕的错事?= await ref.limit(10).get()src/storage/exportCsv.f.ts:25:5 - errorTS2322: Type 'Query' is not assignable to type 'CollectionReference'./exportCsv.f.ts:4
我试图按照整数字段对存储在Firestore中的文档进行排序,但是在尝试这样做时,我得到了这个错误。type Query is not a subtype of type Collection Referencefinal CollectionReference timetableCollection我查看了文档,它说CollectionReference扩展了查询,所以我不知道该修复什么。
来自:https://firebase.google.com/docs/firestore/query-data/queries // Create a reference to the citiescollection var citiesRef = db.collection("cities"); // Create a query against the collection. var query(Colle