gpt4 book ai didi

AngularJS - 如何在 ng-Repeat 中引用属性名称

转载 作者:行者123 更新时间:2023-12-03 04:29:14 25 4
gpt4 key购买 nike

除了呈现对象中属性的值之外,我还想将属性名称呈现为标签。有没有办法用 ng-repeat 来做到这一点?例如:

<ul>
<li ng-repeat="option in data">{{propertyName}}: {{option}}</li>
</ul>

可能会输出如下内容:

<ul>
<li>Name: John</li>
<li>Phone: (123) 456-7890</li>
<li>Country: England</li>
</ul>

最佳答案

试试这个:

<ul>
<li ng-repeat="(key,val) in data">{{key}}: {{val}}</li>
</ul>

关于AngularJS - 如何在 ng-Repeat 中引用属性名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10954286/

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