I want to print JSON file in HTML page but I don't know the keys and the values my JSON Object.
When I know the form of JSON I use this code:
<div ng-repeat="f in faq">
<div class="list-group-item clearfix">
<h4>
<span class="glyphicon glyphicon-file">
</span>
{{f.key}}-{{f.value}}
<span class="pull-right">
<button class="btn btn-warning" ng-click="">
<span class="glyphicon glyphicon-trash">
</span>
</button>
</span>
</h4>
</div>
</div>
</div>
But in this moment I don't know the keys and the values of the JSON.
Thanks for your help.
{{ }}templates?