时间:2021-07-01 10:21:17 帮助过:28人阅读
在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(); }); };
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。