angularjs中ajax請求時傳遞參數的方法

來源:互聯網
上載者:User

標籤:

method1方法使用的是params參數,該用法會把參數直接附加到url中

method2方法使用的是data參數,該參數會把頁面參數類型從預設的multipart/form-data改為application/x-www-form-urlencoded類型,並且將傳遞的data解析為字串,該方法會以post參數的方式傳遞

下面是代碼部分:

<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",url:$scope.url,data:{msg:‘123‘},transformRequest:transFormFactory.transForm,headers:{‘Content-Type‘: ‘application/x-www-form-urlencoded‘}}).success(function (data) {                $scope.content = data;            });        };    });    </script>    </body></html>

 

angularjs中ajax請求時傳遞參數的方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.