angularjs中ajax请求时传递参数的方法

前端之家收集整理的这篇文章主要介绍了angularjs中ajax请求时传递参数的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

http://blog.csdn.net/ganggelove/article/details/51525969


<html ng-app="myApp">

<head> <title>angularjs-ajax</title> <script type="text/javascript" src="../../lib/ionic/js/angular/angular.min.js" charset="utf-8"></script> </head> <body ng-controller="ctrl"> <input type="button" value="抓取页面内容1" ng-click="method1()" /> <input type="button" value="抓取页面内容2" ng-click="method2()" /> <div style="border: 1px solid #ccc;width: 500px;height:400px;">{{content}}</div> <script> var app = angular.module('myApp',[]); app.config(function($provide){ $provide.factory("transFormFactory",function(){ return { transForm : function(obj){ var str = []; for(var p in obj){ str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p])); } return str.join("&"); } }; }); }); app.controller("ctrl",function($scope,$http,$q,transFormFactory){ $scope.method1 = function() { $scope.url = "http://localhost:8081/Learning5/T1.action"; $http({method:"POST",url:$scope.url,params:{msg:'abc'}}).success(function (data) { $scope.content = data; }); }; $scope.method2 = function() { $scope.url = "http://localhost:8081/Learning5/T1.action"; $http({method:"POST",data:{msg:'123'},transformRequest:transFormFactory.transForm,headers:{'Content-Type': 'application/x-www-form-urlencoded'}}).success(function (data) { $scope.content = data; }); }; }); </script> </body> </html> 原文链接:https://www.f2er.com/angularjs/148254.html

猜你在找的Angularjs相关文章