如何使用Typescript创建高级搜索过滤器Angularfirestore?
search = this.afs.collection('City');
search.ref.where('areaList', '==', this.data.area[_i])
.where('price', '>=', this.data.minPrice)
.where('price', '<=', this.data.maxPrice)
如果我仅使用一个输入就给我输入其他输入错误的信息,我想在操作之间进行区分,并根据需要使用。
所有数据都保存在Firestore中。