如何在简单的示例中创建方面筛选器?

时间:2018-09-30 10:27:54

标签: angular typescript search filter angularfire2

StaticBatchingUtility.Combine

注意:我的问题是我无法将查询ref更改为用于获取mat-select等多种数据的数组,例如

 query: firebase.firestore.Query = this.afs.collection('Collection').ref
// Search
 for (let _i = 0; _i < 5; _i++) {

 if (this.data.names) { query = query.where('Names', '==', this.data.names[_i]); }
 if (this.data.ages) { query = query.where('Ages', '==', this.data.ages[_i]); }    
        }
   // Print data 
   query.get().then(function (querySnapshot) {

        querySnapshot.forEach(function (doc) {

          console.log(doc.data());
        });
      });

-------->更改查询获取单个数据以查询获取多个数据<--------

0 个答案:

没有答案