作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
除了呈现对象中属性的值之外,我还想将属性名称呈现为标签。有没有办法用 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/
我是一名优秀的程序员,十分优秀!