Hi I want to bind the zipcode's in the select box from the following data. How to do that ??
[[{'zipcode':'6451105'},{'zipcode':'641515'},{'zipcode':'564555'}]]
Assuming you want to bind one of your zipcode objects to a property, eg
{zipcode: '641515'}
and your actual data looks like this
[{'zipcode':'6451105'},{'zipcode':'641515'},{'zipcode':'564555'}]
this should suffice
<select name="zipCode" ng-model="zipCode"
    ng-options="zipCode.zipcode for zipCode in zipCodes"></select>
ng-optionscheck the following linkzipcodekeys in the same object? Should it perhaps be[{'zipcode':'6451105'},{'zipcode':'641515'},{'zipcode':'564555'}]