Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • looping list using ng-repeat

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 302
    Comment on it

    Hi folks,

    The below example will demonstrate how to do looping over lists in templates using ng-repeat.

    1. <html ng-app="nameApp">
    2. <head>
    3. <meta charset="utf-8">
    4. <title>Angular.js Example</title>
    5. <script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script>
    6. <script>
    7. var nameApp = angular.module('nameApp', []);
    8. nameApp.controller('NameCtrl', function ($scope){
    9. $scope.names = ['Evon', 'Technologes', 'Dehradun'];
    10. });
    11. </script>
    12. </head>
    13. <body ng-controller="NameCtrl">
    14. <ul>
    15. <li ng-repeat="name in names">{{name}}</li>
    16. </ul>
    17. </body>
    18. </html>

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: