How to ng-repeat
over array with string index? Please see below snippet of the code-
Below code is in a controller.
$scope.days = ["mon", "tue", "wed" .... "sun"];
$scope.arr = [];
$scope.arr["mon"] = ["apple","orange"];
$scope.arr["tue"] = ["blue","swish"];
.
.
.
$scope.arr["sun"] = ["pineapple","myfruit","carrot"];
Question - How to ng-repeat
like something below, is it possible?
<div ng-repeat="day in days">{{day}}
<span ng-repeat="item in arr(day)">{{item}}</span>
<-- Something like "arr(day)", can it be done in angular -->
</div>
How to ng-repeat
over array with string index? Please see below snippet of the code-
Below code is in a controller.
$scope.days = ["mon", "tue", "wed" .... "sun"];
$scope.arr = [];
$scope.arr["mon"] = ["apple","orange"];
$scope.arr["tue"] = ["blue","swish"];
.
.
.
$scope.arr["sun"] = ["pineapple","myfruit","carrot"];
Question - How to ng-repeat
like something below, is it possible?
<div ng-repeat="day in days">{{day}}
<span ng-repeat="item in arr(day)">{{item}}</span>
<-- Something like "arr(day)", can it be done in angular -->
</div>
Share
Improve this question
edited May 14, 2016 at 16:34
Shashank Agrawal
25.8k11 gold badges96 silver badges125 bronze badges
asked May 14, 2016 at 15:32
anand patilanand patil
5072 gold badges9 silver badges27 bronze badges
5
- you want to do it in controller or template? – sumair Commented May 14, 2016 at 15:33
- @sumair - In template(the html file) – anand patil Commented May 14, 2016 at 15:34
- Out of interest why aren't you using an object? – MDEV Commented May 14, 2016 at 15:36
- @SmokeyPHP - I could use an object too. But curious to know how to do it for an array? BTW, is it possible for an object? – anand patil Commented May 14, 2016 at 15:37
- Please find the similar post stackoverflow./questions/19544904/… – Thillai Narayanan Commented May 14, 2016 at 15:56
5 Answers
Reset to default 4You can just use normal syntax for item in an array. Please refer my fiddle
<div ng-app='app' ng-controller='default' ng-init='init()'>
<div ng-repeat='day in days'>
<strong>{{day}}</strong><br/>
<span ng-repeat="item in arr[day]">{{item}} </span>
</div>
</div>
https://jsfiddle/DoTH/evcv4tu5/3/
Use square brackets to access object/array fields/elements.
<div ng-repeat="day in days">{{day}}
<span ng-repeat="item in arr[day]">{{item}}</span>
</div>
You can use it like this ng-repeat="item in arr[day]"
You can print the item number too.
<div ng-repeat="day in days">
{{day}}
<div ng-repeat="(key, value) in arr[day]">Item #{{key + 1}}: {{value}}
</div>
<br />
</div>
Yes, this is absolutely possible. See a working example below:
var app = angular.module("sa", []);
app.controller("FooController", function($scope) {
$scope.days = ["mon", "tue", "wed", "sun"];
$scope.arr = [];
$scope.arr["mon"] = ["apple", "orange"];
$scope.arr["tue"] = ["blue", "swish"];
$scope.arr["sun"] = ["pineapple", "myfruit", "carrot"];
});
<script src="https://ajax.googleapis./ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="sa" ng-controller="FooController">
<ol>
<li ng-repeat="day in days">
<strong>{{day}}</strong>
<ol>
<li ng-repeat="item in arr[day]">{{item}}</li>
</ol>
</li>
</ol>
</div>