I am bring a data from a server which is an Array that hold a long and string value.The data i recieve is mentioned below
warehouseList: Array[2]
0: Array[2]0: 11: "Enterprise"
1: Array[2]0: 21: "800-BETHLEHEM"
How to print the names in the div.
<ng-repeat "items in warehouseList">
{{item[1}}
Please provide some idea. Thanks .
warehouseList
in your controller's$scope
? – axelduch Sep 10 '14 at 6:32