angularjs服务 $http
Posted zzws
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs服务 $http相关的知识,希望对你有一定的参考价值。
angularjs服务 $http
<!DOCTYPE html> <html ng-app="test"> <head> <meta charset="utf-8"> <script src="angular.min.js"></script> <script> var app=angular.module(‘test‘,[]); // alert(app); app.controller(‘zhangsan‘,function($scope,$http){ // $http.get(url,参数) // $http.post() // a.php?a=xxx&b=xxx=> $http.get(‘a.php‘,{ params:{a:12,b:6}, responseType:‘json‘ }).then(function(res){ alert(res.data+5); },function(){ alert("失败了"); }); }); </script> </head> <body ng-controller="zhangsan"> </body> </html>
a.php
<?php echo $_GET[‘a‘]+$_GET[‘b‘]; ?>
以上是关于angularjs服务 $http的主要内容,如果未能解决你的问题,请参考以下文章
AngularJS:$http 服务 GET 到 php 服务器:请求方法:选项,状态代码:405 方法不允许