Angularfire2.5 Real Time Database with angular material autocomplete
问题 I am trying to use the angular material autocomplete input field with angularfire2 v5. I have some difficulties adapting the shown example: https://material.angular.io/components/autocomplete/examples to a firebase list. It seems that the functions used in the example can't work with an observable input: The following code : // FROM COMPOSERS.SERVICE.TS constructor(private db: AngularFireDatabase) { this.membersRef = db.list('/members'); this.members = this.membersRef.valueChanges(); }