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());
});
});
-------->更改查询获取单个数据以查询获取多个数据<--------