-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path27-http.html
46 lines (42 loc) · 1007 Bytes
/
27-http.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta charset="UTF-8">
<title>http服务</title>
</head>
<body>
<div ng-controller="test" >
姓名:{{data.name}}-年龄:{{data.age}}
</div>
<script type="text/javascript" src="js/angular.min.js" ></script>
<script>
/*
$.ajax({
type:"get",
url:"",
async:true
});
$.get()
$.post()
*/
var m1 = angular.module('myApp',[]);
m1.controller('test',['$scope','$http',function($scope,$http){
/*
$http({
method:'GET',
url:'httpdata.json'
})
.success(function(data,state,headers,config){
//console.log(data);
//console.log(state);
//console.log(headers);
//console.log(config);
$scope.data = data;
})
.error(function(data){console.log(data);});//假设http服务没有正确相应,就会返回报错信息
*/
$http.get('httpdata.json').success(function(data,state,headers,config){$scope.data = data;});
}]);
</script>
</body>
</html>