How to debug Observable values in Angular2 / Typescript?
问题 I have followed the tutorial for angular 2 and have a search functionality that renders a list of heroes asynchronously. <div *ngFor="let hero of heroes | async"> {{hero.name}} </div> In the component I have observable heroes: heroes: Observable<Hero[]>; Now I have implemented similar functionality in my application by I don't see anything and I don't see any errors either. I opened the debugger in Chrome and tried to check the value of heroes, but it's just some Observable wrapper of course.