AngularJS - Moduli
AngularJS supporta l'approccio modulare. I moduli vengono utilizzati per separare la logica come servizi, controller, applicazioni ecc. Dal codice e mantenerlo pulito. Definiamo i moduli in file js separati e li denominiamo come da file module.js. Nel seguente esempio, creeremo due moduli:
Application Module - utilizzato per inizializzare un'applicazione con i controller.
Controller Module - utilizzato per definire il controller.
Modulo applicativo
Ecco un file denominato mainApp.js che contiene il codice seguente:
var mainApp = angular.module("mainApp", []);
Qui, dichiariamo un'applicazione mainAppmodule usando la funzione angular.module e passargli un array vuoto. Questo array contiene generalmente moduli dipendenti.
Modulo controller
studentController.js
mainApp.controller("studentController", function($scope) {
$scope.student = {
firstName: "Mahesh",
lastName: "Parashar",
fees:500,
subjects:[
{name:'Physics',marks:70},
{name:'Chemistry',marks:80},
{name:'Math',marks:65},
{name:'English',marks:75},
{name:'Hindi',marks:67}
],
fullName: function() {
var studentObject;
studentObject = $scope.student;
return studentObject.firstName + " " + studentObject.lastName;
}
};
});
Qui, dichiariamo un controller studentController modulo utilizzando la funzione mainApp.controller.
Usa i moduli
<div ng-app = "mainApp" ng-controller = "studentController">
...
<script src = "mainApp.js"></script>
<script src = "studentController.js"></script>
</div>
Qui, utilizziamo il modulo dell'applicazione utilizzando la direttiva ng-app e il controller utilizzando la direttiva ngcontroller. Importiamo mainApp.js e studentController.js nella pagina HTML principale.
Esempio
L'esempio seguente mostra l'utilizzo di tutti i moduli sopra menzionati.
testAngularJS.htm
<html>
<head>
<title>Angular JS Modules</title>
<script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script src = "/angularjs/src/module/mainApp.js"></script>
<script src = "/angularjs/src/module/studentController.js"></script>
<style>
table, th , td {
border: 1px solid grey;
border-collapse: collapse;
padding: 5px;
}
table tr:nth-child(odd) {
background-color: #f2f2f2;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
</style>
</head>
<body>
<h2>AngularJS Sample Application</h2>
<div ng-app = "mainApp" ng-controller = "studentController">
<table border = "0">
<tr>
<td>Enter first name:</td>
<td><input type = "text" ng-model = "student.firstName"></td>
</tr>
<tr>
<td>Enter last name: </td>
<td><input type = "text" ng-model = "student.lastName"></td>
</tr>
<tr>
<td>Name: </td>
<td>{{student.fullName()}}</td>
</tr>
<tr>
<td>Subject:</td>
<td>
<table>
<tr>
<th>Name</th>
<th>Marks</th>
</tr>
<tr ng-repeat = "subject in student.subjects">
<td>{{ subject.name }}</td>
<td>{{ subject.marks }}</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>
mainApp.js
var mainApp = angular.module("mainApp", []);
studentController.js
mainApp.controller("studentController", function($scope) {
$scope.student = {
firstName: "Mahesh",
lastName: "Parashar",
fees:500,
subjects:[
{name:'Physics',marks:70},
{name:'Chemistry',marks:80},
{name:'Math',marks:65},
{name:'English',marks:75},
{name:'Hindi',marks:67}
],
fullName: function() {
var studentObject;
studentObject = $scope.student;
return studentObject.firstName + " " + studentObject.lastName;
}
};
});
Produzione
Apri il file textAngularJS.htm in un browser web. Guarda il risultato.