我想在 HTML 页面中打印 JSON 文件,但我不知道我的 JSON 对象的键和值。
当我知道 JSON 的形式时,我使用此代码:
<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>
但是在这一刻我不知道 JSON 的键和值。
感谢您的帮助。
答案 0 :(得分:2)
看起来你正在使用角度(我注意到ng-repeat)。您可以按如下方式使用(键,数据): -
<div ng-repeat="(key, data) in faq">
{{key}} - {{data}}
</div>