When using ng-repeat you may find yourself wanting get the keys or field names of the json values you are accessing, such as for server side errors.

This can be achieved using the following technique:


<div ng-repeat="(key,value) in data"></div>