How to display json object using *ngFor in Angular 2 (Data fetch from Firebase)
I want to display the below data from Firebase. When I'm doing {{ response | json }}. It will display following output.
<p> Response: {{ response | json }} </p>

<ul *ngFor="#value of response.data">
<li>Value: {{ value.duration }}</li>
</ul>
This *ngFor did not work. Please help me.
·
Santiago Trujillo