在angularjs發送post請求的時候,確實很困惑,在傳遞json數據的時候,總會遇到在服務端沒法接受到參數的狀況,這裏有必要與$.post進行比較學習一下。css
這裏模擬登陸的一個場景,post用戶名與密碼,服務端接受帳戶並直接返回到客戶端不作其它業務處理。html
使用angularjs版本angularjs
/* AngularJS v1.2.15 (c) 2010-2014 Google, Inc. http://angularjs.org License: MIT */
服務端json
public class AccountController : Controller { // GET: /<controller>/ public IActionResult Login() { return View(); } [HttpPost] public IActionResult Login(string userName,string userPwd) { var resut = Request.Form; return Json(new { _code = 200, _msg = "Login success", name = userName, password = userPwd }); } }
$.postbootstrap
首先使用$.post的方式,直接提交帳戶密碼app
$.post("@Url.Content("~/Account/Login")",{ userName: "2342342", userPwd:"2sssdfs" },function (data) { console.log(data); });
響應ide
這裏咱們看一下請求體post
那麼咱們如今看看angularjs的$http.post的狀況,到底區別在哪兒?學習
@{ Layout = null; } <!DOCTYPE html> <html ng-app="login"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>IT怪O 用戶登陸</title> <link href="~/lib/bootstrap/dist/css/bootstrap.css" rel="stylesheet" /> <script src="~/js/angular.min.js"></script> <script> angular.module("login", []).controller("LoginController", function ($http, $scope) { $scope.Login = function () { var data = { userName: $scope.userName, userPwd: $scope.userPwd }; var config = { headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, //transformRequest: function (obj) { // var str = []; // for (var p in obj) { // str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p])); // } // return str.join("&"); //} }; console.log(data); $http.post("@Url.Content("~/Account/Login")", data, config).success(function (data) { console.log(data); }); }; }); </script> </head> <body> <div ng-controller="LoginController"> <input type="text" placeholder="用戶名" ng-model="userName" value="" /> <input type="password" placeholder="密碼" ng-model="userPwd" value="" /> <button ng-click="Login()">登陸</button> </div> </body> </html>
登陸url
出現了,處於習慣的緣由,平時就會這樣來寫$http.post的。但結果並非想要的。那麼我們與$.post對比一下請求體。
看到沒?差異就在這裏。
發現問題了,那麼咱們就要轉化爲$.post提交參數的方式。幸虧,angularjs中$http.post提供了一個轉化參數的transformRequest方法,能夠在config中加上該參數:
var config = {
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
transformRequest: function (obj) {
var str = [];
for (var p in obj) {
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
}
return str.join("&");
}
};
它的做用就是將提交的參數轉化爲$.post提交參數的方式。這樣看到的請求體中參數就與$.post相同了。
能夠在全局進行設置
<script> angular.module("login", []).controller("LoginController", function ($http, $scope) { $scope.Login = function () { var data = { userName: $scope.userName, userPwd: $scope.userPwd }; console.log(data); $http.post("@Url.Content("~/Account/Login")", data).success(function (data) { console.log(data); }); }; }).config(function ($httpProvider) { $httpProvider.defaults.transformRequest = function (obj) { var str = []; for (var p in obj) { str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p])); } return str.join("&"); }; $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded; charset=utf-8'; }); </script>
angularjs在進行post請求的時候要進行參數配置。關於angularjs的post請求,建議在初始化模塊的時候對post請求設置請求頭與請求參數轉換的設置,這樣能夠在其餘地方方便使用。
參考