async pipe into src image attribute - Angular 2+
问题 i have problem with observable and async pipe. I have input in my component with Observable. In controller and on subscribe into observable in ngOnInit im get valid values. Problem is in template, I do not get valid values on template. I want to have async in image src attribute. TvShowComponent (return Observable) public getCoverLink(): Observable<string> { return this.tvShowForm.get('cover').valueChanges.pipe(map((coverLink: string) => { return coverLink; })); } TvShowComponent template