最佳答案
除了呈现对象中属性的值之外,我还希望将属性名作为标签呈现。有没有办法用 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>