如何在实时数据库中以及在Firestore中检查特定数据?
this.afs.collection('collection', ref => ref.where('data', "==", date
)).snapshotChanges(.subscribe(res => {
我已经尝试
this.database.list('collection', ref => ref.where
但是,“类型'Reference'上不存在属性'where'。”
答案 0 :(得分:0)
我建议查看querying lists in the realtime database上的AngularFire文档和ordering and filtering Realtime Database data in JavaScript上的Firebase文档,这些文档表明查询是通过以下方式完成的:
this.database.list('collection', ref => ref.orderByChild("data").equalTo(date))