In the angularjs, The ng-repeat directive are used to complete the function of loop.
The example code are given below.
The example code are given below.
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
| <!DOCTYPE html> <html> <head lang= "en" > <script type= "text/javascript" src= "https://ajax.googleapis.com/ajax/libs/angularjs/1.2.4/angular.min.js" ></script> <script> function Main($scope) { $scope.getWelcomeEntities = function () { return [{ Name: 'for a loop in Angular JS.' }]; }; }; </script> </head> <body ng-app> <div ng-repeat= "item in getWelcomeEntities()" > code sample {{item.Name}} </div> </body> </html> |
<!DOCTYPE html> <html> <head lang="en"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.4/angular.min.js"></script> <script> function Main($scope) { $scope.getWelcomeEntities = function () { return [{ Name: 'for a loop in Angular JS.' }]; }; }; </script> </head> <body ng-app> <div ng-repeat="item in getWelcomeEntities()"> code sample {{item.Name}} </div> </body> </html>