码迷,mamicode.com
首页 > Web开发 > 详细

angularjs服务 $http

时间:2018-05-31 00:18:07      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:body   TE   charset   doctype   res   doc   ams   $scope   var   

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

标签:body   TE   charset   doctype   res   doc   ams   $scope   var   

原文地址:https://www.cnblogs.com/zzws/p/9113964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!