gpt4 book ai didi

angularjs - 如何按 angularjs 中的键和值列出?

转载 作者:行者123 更新时间:2023-12-04 22:06:46 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:




8年前关闭。




Possible Duplicate:
AngularJS - How can I reference the property name within an ng-Repeat



我有一个这样的 JSON 文件:
fields: {
alias: {
type: "string",
},
name: {
type: "string",
}
}

我想要这样的东西:
<dl ng-repeat="for field in fields.items">
<dt>
{{ field.key }}
</dt>
<dd>
{{ field.value }}
</dd>
</dl>

提前致谢!

最佳答案

根据 ngRepeat 文档,您可以使用“(key, value) in expression”作为参数——其中 key 和 value 可以是任何用户定义的标识符,而 expression 是给出要枚举的集合的范围表达式。

例如:{'adam':10, 'amalie':12} 中的 (name, age)。

http://docs.angularjs.org/api/ng.directive:ngRepeat

关于angularjs - 如何按 angularjs 中的键和值列出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10987509/

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