English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Manuale di riferimento AngularJS
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app="myApp" ng-controller="myCtrl"> <h1 ng-repeat="x in records">{{x}}</h1> <script> var app = angular.module("myApp", []); app.controller("myCtrl", function($scope) { $scope.records = [ "Sito di tutorial di base 1", "Sito di tutorial di base 2", "Sito di tutorial di base 3", "Sito di tutorial di base 4", ] }); </script> </body> </html>Prova a vedere ‹/›
ng-repeat La direttiva viene utilizzata per esportare un numero specificato di elementi HTML.
La collezione deve essere un array o un oggetto.
<element ng-repeat="espressione"></element>
Tutti gli elementi HTML supportano questa direttiva.
Valore | Descrizione |
---|---|
espressione | L'espressione definisce come iterare una collezione. Esempio di espressione: x in records
(key, value) in myObj |
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app="myApp"> <table ng-controller="myCtrl" border="1"> <tr ng-repeat="x in records"> <td>{{x.Name}}</td> <td>{{x.Country}}</td> </tr> </table> <script> var app = angular.module("myApp", []); app.controller("myCtrl", function($scope) { $scope.records = [ { "Name" : "Alfreds Futterkiste", "Country": "Germany" }, { "Name": "Berglunds snabbk", "Country": "Sweden" }, { "Name": "Centro comercial Moctezuma", "Country": "Mexico" }, { "Name": "Ernst Handel", "Country": "Austria" } ] }); </script> </body> </html>Prova a vedere ‹/›
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app="myApp"> <table ng-controller="myCtrl" border="1"> <tr ng-repeat="(x, y) in myObj"> <td>{{x}}</td> <td>{{y}}</td> </tr> </table> <script> var app = angular.module("myApp", []); app.controller("myCtrl", function($scope) { $scope.myObj = { "Name" : "Alfreds Futterkiste", "Country" : "Germany", "City" : "Berlin" } }); </script> </body> </html>Prova a vedere ‹/›