问题 Note this is simplified question of Angular template binding with Observable async pipe issue template: <div>{{foo()$ | async}}</div> source code: import { Component } from "@angular/core"; import { BehaviorSubject, of, Observable } from "rxjs"; import { tap, delay, map, switchMap, concatMap } from "rxjs/operators"; @Component({ selector: "my-app", templateUrl: "./app.component.html", styleUrls: ["./app.component.css"] }) export class AppComponent { private index = 0; foo$(): Observable<any>