Angular 6 - rxjs pipe not working on valueChanges - Stack Overflow
You need to subscribe
to activate the Observable
,
ngOnInit() {
this.filteredOptions = this.myControl.valueChanges
.pipe(
startWith(''),
map(val => this.filter(val))
).subscribe();
}
Không có nhận xét nào:
Đăng nhận xét