1
¿Por qué setTimeout () hace que mi aplicación sea lenta, pero Rxjs timer (). Subscribe (...) no?
Tengo un componente, que "carga perezosamente" algunos comentarios, en el intervalo de 100 ms. Cuando uso setTimeout, es realmente lento. componente <div *ngFor="let post of posts"> <app-post [post]="post" ></app-post> </div> Esto hace que mi aplicación sea lenta (avg fps 14, tiempo de inactividad 51100ms): while(this.postService.hasPosts()){ setTimeout(()=> { this.posts.push(this.postService.next(10)); },100); } …