本文概述
- AngularJS AJAX示例
- HTTP服务方法
- 属性
AngularJS需要JSON格式的数据。数据准备好后,$ http将以以下方式获取数据表单服务器:
function employeeController($scope, $http) {
var url = "data.txt";
$http.get(url).success( function(response) {
$scope.employees = response;
});
}
这里的文件“ data.txt”是员工的记录。 $ http服务会进行AJAX调用,并对其物业员工进行响应。该模型用于绘制HTML中的表格。
AngularJS AJAX示例【angularjs ajax】testAngularJS.htm
<
!DOCTYPE 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 = "employeeController"><
table>
<
tr>
<
th>Name<
/th>
<
th>Age<
/th>
<
th>Salary<
/th>
<
/tr><
tr ng-repeat = "employee in employees">
<
td>{{ employee.Name }}<
/td>
<
td>{{ employee.Age }}<
/td>
<
td>{{ employee.Salary }}<
/td>
<
/tr>
<
/table>
<
/div><
script>
function employeeController($scope, $http) {
var url = "data.txt";
$http.get(url).success( function(response) {
$scope.employees = response;
});
}
<
/script><
script src = "http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"><
/script><
/body>
<
/html>
此处的data.txt文件包含员工的记录。
“ data.txt”(JSON格式的员工数据)
[
{
"Name" : "Mahesh Sharma", "Age" : 25, "Salary" : "20000"
}, {
"Name" : "Rohan Malik", "Age" : 20, "Salary" : "22000"
}, {
"Name" : "Robert Petro", "Age" : 45, "Salary" : "67000"
}, {
"Name" : "Jullia Roberts", "Age" : 21, "Salary" : "55000"
}
]
要执行以上示例,你必须将testAngularJS.htm和data.txt文件部署到Web服务器。
在网络浏览器中使用服务器的URL打开文件testAngularJS.htm,然后查看结果。
输出:
结果将如下所示:
文章图片
表:
Name | 年龄 | 薪水 |
---|---|---|
Mahesh Sharma | 25 | 20000 |
Rohan Malik | 20 | 22000 |
Robert Petro | 45 | 67000 |
Jullia Roberts | 21 | 55000 |
- .delete()
- .get()
- .head()
- .jsonp()
- .patch()
- .post()
- .put()
- .config用于生成请求的对象。
- .data包含服务器响应的字符串或对象。
- .headers用于获取标题信息的函数。
- .status一个定义HTTP状态的数字。
- .statusText一个定义HTTP状态的字符串。
推荐阅读
- angularjs动画
- angularjs验证
- angularjs表单
- angularjs dom
- angularjs选择
- angularjs表
- angularjs过滤器
- angularjs依赖注入
- angularjs范围