over 9 years ago
Hi folks,
The below example will demonstrate how to do looping over lists in templates using ng-repeat.
- <html ng-app="nameApp">
- <head>
- <meta charset="utf-8">
- <title>Angular.js Example</title>
- <script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script>
- <script>
- var nameApp = angular.module('nameApp', []);
- nameApp.controller('NameCtrl', function ($scope){
- $scope.names = ['Evon', 'Technologes', 'Dehradun'];
- });
- </script>
- </head>
- <body ng-controller="NameCtrl">
- <ul>
- <li ng-repeat="name in names">{{name}}</li>
- </ul>
- </body>
- </html>
<html ng-app="nameApp"> <head> <meta charset="utf-8"> <title>Angular.js Example</title> <script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script> <script> var nameApp = angular.module('nameApp', []); nameApp.controller('NameCtrl', function ($scope){ $scope.names = ['Evon', 'Technologes', 'Dehradun']; }); </script> </head> <body ng-controller="NameCtrl"> <ul> <li ng-repeat="name in names">{{name}}</li> </ul> </body> </html>
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)