我正在尝试查询以下结构:
我需要找到所有包含路径' orders / stores {id1}'的订单。例如
我尝试了以下代码段:
return this.db.list(`orders`, ref => ref.child(`stores/id1`)).snapshotChanges();
return this.db.list(`orders`, ref => ref.child(`stores`).child(`id1`).snapshotChanges();
return this.db.list(`orders`, ref => ref.child(`stores`).equalTo('id1')).snapshotChanges();
但没有人提供任何结果。
我应该重组我的数据吗?有没有办法查询这个?