AngularJS - Ajax
AngularJS fornisce il controllo $ http che funziona come un servizio per leggere i dati dal server. Il server effettua una chiamata al database per ottenere i record desiderati. AngularJS necessita di dati in formato JSON. Una volta che i dati sono pronti, $ http può essere utilizzato per ottenere i dati dal server nel modo seguente:
function studentController($scope,$https:) {
var url = "data.txt";
$https:.get(url).success( function(response) {
$scope.students = response;
});
}
Qui, il file data.txt contiene i record degli studenti. Il servizio $ http effettua una chiamata ajax e imposta la risposta ai suoi studenti di proprietà. Il modello degli studenti può essere utilizzato per disegnare tabelle in HTML.
Esempi
data.txt
[
{
"Name" : "Mahesh Parashar",
"RollNo" : 101,
"Percentage" : "80%"
},
{
"Name" : "Dinkar Kad",
"RollNo" : 201,
"Percentage" : "70%"
},
{
"Name" : "Robert",
"RollNo" : 191,
"Percentage" : "75%"
},
{
"Name" : "Julian Joe",
"RollNo" : 111,
"Percentage" : "77%"
}
]
testAngularJS.htm
<html>
<head>
<title>Angular JS Includes</title>
<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 = "" ng-controller = "studentController">
<table>
<tr>
<th>Name</th>
<th>Roll No</th>
<th>Percentage</th>
</tr>
<tr ng-repeat = "student in students">
<td>{{ student.Name }}</td>
<td>{{ student.RollNo }}</td>
<td>{{ student.Percentage }}</td>
</tr>
</table>
</div>
<script>
function studentController($scope,$http) {
var url = "/data.txt";
$http.get(url).then( function(response) {
$scope.students = response.data;
});
}
</script>
<script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js">
</script>
</body>
</html>
Produzione
Per eseguire questo esempio, è necessario distribuire i file testAngularJS.htm e data.txt su un server web. Apri il file testAngularJS.htm utilizzando l'URL del tuo server in un browser web e guarda il risultato.