2017-11-14 3 views
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(); 
}); 
} 

答えて

関連する問題