AngularJS XMLHttpRequest

Posted 坚持

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AngularJS XMLHttpRequest相关的知识,希望对你有一定的参考价值。

$http是AngularJS中的一个核心服务,用于读取远程服务器的数据。

使用格式如下:

$http({method:‘get‘,url:‘./omeurl‘}).then(function successCallback(responne){

//todo;

},function errorCallback(respone){

//to do ;

});

简单语法:$http.get(‘/someurl‘,cpmfig).then(successCallback,errorCallback);//get可以换成post、put、delete等。

$http提供了get、head、post、put、delete、jsonp、patch

以上是关于AngularJS XMLHttpRequest的主要内容,如果未能解决你的问题,请参考以下文章

初识AngularJS

AngularJs初识

[angularjs] angularjs系列笔记简介

[angularjs] angularjs系列笔记事件

AngularJS

[angularjs] angularjs系列笔记模型