在AngularJS中使用AJAX的方法
程序员文章站
2022-09-07 10:17:15
angularjs提供$http控制,可以作为一项服务从服务器读取数据。服务器可以使一个数据库调用来获取记录。 angularjs需要json格式的数据。一旦数据准备好,$...
angularjs提供$http控制,可以作为一项服务从服务器读取数据。服务器可以使一个数据库调用来获取记录。 angularjs需要json格式的数据。一旦数据准备好,$http可以用以下面的方式从服务器得到数据。
function studentcontroller($scope,$http) { var url="data.txt"; $http.get(url).success( function(response) { $scope.students = response; }); }
在这里,data.txt中包含的学生记录。 $http服务使ajax调用和设置针对其学生的属性。 “学生”模型可以用来用来绘制 html 表格。
例子
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%"
}
]
{
"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.html
<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).success( function(response) { $scope.students = response; }); } </script> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script> </body> </html>
输出
要运行这个例子,需要部署textangularjs.html,data.txt到一个网络服务器。使用url在web浏览器中打开textangularjs.html请求服务器。看到结果如下:
推荐阅读
-
watch在Vue.js中的使用方法详解
-
mysql中sum float类型使用小数点的方法_MySQL
-
JQuery Ajax 在asp.net中的使用并调用后台实例讲解
-
【转载】C#中ArrayList集合类使用RemoveAt方法移除指定索引的元素
-
在Linux命令行下查询当前所使用的shell版本与种类的方法
-
简单介绍Python中的readline()方法的使用
-
Python中tell()方法的使用详解
-
php使用unset()删除数组中某个单元(键)的方法,unset数组_PHP教程
-
在Python程序中操作文件之isatty()方法的使用教程
-
在Python程序中操作MySQL的基本方法