I have the following array in angularjs and want to populate the Select List.
types: {
data: {
result: [
{
Item: Default Group
Val: 1
}
]
}
}
I have tried the following code but no result
<div ng-controller="dtaCtrl">
<select class="form-control" ng-repeat="lop in types">
<option>{{lop.data.result.Item}}</option>
</select>
</div>