0
実際に私はこのAngularFireListの$キーを取得する必要がありますが、実際にはこれがリストにある自分のコードであり、実際にはデータを再送しません
getAutosByPlaca(placac: string): Observable<Auto[]> {
const placa$ = new Subject().startWith(placac);
return placa$.switchMap(placa => {
return this.db.list(this.dbPath, ref => ref.orderByChild('placa').equalTo(placac)).valueChanges();
});
}