无法在firebase.firestore.CollectionReference中使用Array firebase.firestore.Query为什么?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法在firebase.firestore.CollectionReference中使用Array firebase.firestore.Query为什么?相关的知识,希望对你有一定的参考价值。
const list = this.afs.collection( 'City').ref;
let queryCollection: firebase.firestore.CollectionReference | firebase.firestore.Query & Array = list;
for (let _i = 0; _i < this.data.areaList.length; _i++) {
if (this.data.areaList) {
queryCollection[_i] = queryCollection.where('areaList', '==', this.data.areaList[_i]);
}
console.log(this.data.areaList[_i]);
}
注意:不能使用只让const为什么以及如何更改错误?我想使用let queryCollection。 I wanna create advanced Firestore data filter
答案
你为什么要为你的CollectionReference
和你的查询数组使用相同的变量,这是两个不同的东西?考虑:
const list = this.afs.collection( 'City').ref;
let queryCollection = [];
for (let _i = 0; _i < this.data.areaList.length; _i++) {
if (this.data.areaList) {
queryCollection[_i] = list.where('areaList', '==', this.data.areaList[_i]);
}
console.log(this.data.areaList[_i]);
}
以上是关于无法在firebase.firestore.CollectionReference中使用Array firebase.firestore.Query为什么?的主要内容,如果未能解决你的问题,请参考以下文章
无法在 SQL Server 视图中使用工作查询:“IS”无法识别“>”无法识别
React 无法编译模块未找到:无法在listingDetail 上解析