Use data-ng-init with array

Description

We can define array and pass into data-ng-init.

Example


<!DOCTYPE html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js">
</script><!--from w ww .j  av  a  2 s  . co m-->
</head>
<body>
    <div data-ng-init="names=[{name:'XML',city:'W3C'},{name:'Java',city:'Oracle'},{name:'Tutorial',city:'java2s.com'}]">
        <ul>
            <li data-ng-repeat="myObject in names">{{myObject.name}} - {{myObject.city}}</li>
        </ul>
    </div>
</body>
</html>

Click to view the demo





















Home »
  AngularJS »
    AngularJS Example »




Controller
Directives
Expression
Filter
Form
Inject
Scope
Server
Style
Template
Utilities