如何使用AngularJS输出JSON数组中的元素

时间:2013-08-26 03:13:19

标签: javascript html json angularjs output

范围内定义的JSON数组:

$scope.faq = [
        {"Question 1": "Answer1"},
        {"Question 2": "Answer2"}
    ];

HTML:

<div ng-repeat="f in faq">
    {{f}}
</div>

输出:

{"Question 1": "Answer1"}
{"Question 2": "Answer2"}

我希望输出看起来像:

Question 1 - Answer1
Question 2 - Answer2

它看起来应该如何运作:

<div ng-repeat="f in faq">
    {{f.key}}-{{f.value}}
</div>

......但事实并非如此。

5 个答案:

答案 0 :(得分:12)

更改范围内的json数组;

$scope.faq = [
        {key: "Question 1",
         value: "Answer1"},

        {key: "Question 2",
         value: "Answer2"}
    ];

在你看来;

<div ng-repeat="f in faq">
    {{f.key}}-{{f.value}}
</div>

答案 1 :(得分:8)

由于它在一个数组中,你必须循环遍历每个对象的键值。

http://fiddle.jshell.net/TheSharpieOne/QuCCk/

<div ng-repeat="value in faq">
    <div ng-repeat="(question,answer) in value">
        {{question}} - {{answer}}
    </div>
</div>

可替换地:
如果你只有一个简单的对象:

$scope.faq = {
     "Question 1": "Answer1",
     "Question 2": "Answer2"
};

你可以避免第二次重复

<div data-ng-repeat="(question,answer) in faq">
        {{question}} - {{answer}}
</div>

http://fiddle.jshell.net/TheSharpieOne/D3sED/

答案 2 :(得分:0)

$scope.faq = [
    "Answer1",
    "Answer2"
];


<div ng-repeat="answer in faq">
    Question {{$index+1}}-{{answer}}
</div>

答案 3 :(得分:0)

如果您使用的是ECMA5兼容浏览器,可以尝试

<div ng-repeat="f in faq">
    {{Object.keys(f)[0]}}-{{f[Object.keys(f)[0]]}}
</div>

当然,只有当您的对象只有1个键时,这才能可靠地工作。如果它有多个键,最好的办法是编写一个获取键名的过滤函数,然后用它来提取相关的键。

答案 4 :(得分:0)

检查我的代码:http://plnkr.co/edit/NGEcK7iieFRtvt7WP48A?p=preview

ng-repeat需要一个数组,对于数组中的每个对象,您需要使用值绑定的键。