This is Json file:
[{"id":"1","name":"Cemera","catename":"canon","filepath":"/img/jdf.png"},{"id":"1","name":"Cemera","catename":"canon","filepath":"/img/sdsd.jpg"}]
This code
<ion-view>
<ion-content>
<ion-list class="list-inset">
<ion-item class="item-text-wrap" ng-repeat="x in articledetail ">
<p> Name : {{x.name}}</p>
<p> Category : {{x.catename}}</p>
<p> Filepath : {{x.filepath}}</p>
</ion-item>
</ion-list>
</ion-content>
</ion-view>
i want to show like this:
Name: Cemera
Category : canon
Filepath : /img/jdf.png
/img/sdsd.jpg