@el0zahaby wrote:
I was trying to read the json file in my application, but it only shows me: "[object object]"
This is the json file:
[ { "product": "URL shortener", "version": "m1", "error": "false", "time": "false", "domin": "https://goo.gl/", "code": "SLnH/", "shortUrl": "https://goo.gl/SLnH", "longUrl": "test" } ]in home.html:
<ion-list > <ion-item text-wrap *ngFor="let item of jsonData"> <p>{{item}} </p> </ion-item> </ion-list>But unfortunately this result:
All I want is: to show the information in the json file
Posts: 1
Participants: 1
