javascript 如何使用AngularFire查询实时数据库?

wfveoks0  于 2023-05-12  发布在  Java
关注(0)|答案(1)|浏览(106)

如何检查实时数据库中特定数据以及它在Firestore中的检查?

this.afs.collection('collection', ref => ref.where('data', "==", date
    )).snapshotChanges(.subscribe(res => {

我试过了

this.database.list('collection', ref => ref.where

但是,“类型“引用”上不存在属性“where”。”

liwlm1x9

liwlm1x91#

我建议查看querying lists in the realtime database上的AngularFire文档,以及有关在JavaScript中排序和过滤实时数据库数据的Firebase文档,其中显示查询是通过以下方式完成的:

this.database.list('collection', ref => ref.orderByChild("data").equalTo(date))

相关问题