如何检查实时数据库中特定数据以及它在Firestore中的检查?
this.afs.collection('collection', ref => ref.where('data', "==", date
)).snapshotChanges(.subscribe(res => {
我试过了
this.database.list('collection', ref => ref.where
但是,“类型“引用”上不存在属性“where”。”
如何检查实时数据库中特定数据以及它在Firestore中的检查?
this.afs.collection('collection', ref => ref.where('data', "==", date
)).snapshotChanges(.subscribe(res => {
我试过了
this.database.list('collection', ref => ref.where
但是,“类型“引用”上不存在属性“where”。”
1条答案
按热度按时间liwlm1x91#
我建议查看querying lists in the realtime database上的AngularFire文档,以及有关在JavaScript中排序和过滤实时数据库数据的Firebase文档,其中显示查询是通过以下方式完成的: