除了呈现对象中属性的值之外,我还想将属性名称呈现为标签。有办法做到这一点ng-repeat吗?例如:
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>