gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 13:57:24 27 4
gpt4 key购买 nike

范围内定义的 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>

...但事实并非如此。

最佳答案

在范围内更改您的 json 数组;

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

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

在你看来;

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

关于javascript - 如何使用 AngularJS 输出 JSON 数组中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18436084/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com