时间:2020-10-03 10:14:50 | 栏目:AngularJS | 点击:次
在AngularJS中主要使用$http服务与远程http服务器交互,其作用类似于jquery中的$.ajax服务:
$http使用说明:
$http服务使用如下面代码所示:
// 1.5以下版本 $http(config) .success(function(data, status, headers, config){//请求成功执行代码}) .error(function(data, status, headers, config){//请求失败执行代码}) // 1.5以上版本 $http(config).then( function successCallback(response){//请求成功执行代码}, function errorCallback(response){//请求失败执行代码} );
具体参数、方法说明:
配置参数:
回调函数:
method属性可以作为config配置参数中的一个属性,也可以直接作为方法调用,如:
$http.post(url, data, config)
$http使用范例:
var searchOplog = function ($http, table, btn) { $http({ url: 'data/oplog.json', method: 'GET' }).then(function successCallback(response) { console.log('get Oplog success:', response); table.init(response.data); btn.button('reset'); btn.dequeue(); }, function errorCallback(response) { console.log('errorCallback Response is:', response); table.init(); btn.button('reset'); btn.dequeue(); }); };