我正在使用构建一个应用程序,AngularJS
并且我有一个登录表单,我想从中发送JSON
数据作为请求正文。
在我的控制器中;
$scope.credentials = {userid: $scope.userid, password: $scope.password};
$scope.login = function () {
$http({
method : 'POST',
url : 'http://localhost/login.json',
data : $scope.credentials,
headers: {'Content-Type': 'application/json'}
}).success(function (data) {
// code
}).error(function (data, status, headers, config) {
$scope.status = status + ' ' + headers;
console.log($scope.status);
});
};
但是当我提交表单时,POST 请求没有执行,并且我在控制台中收到一条消息,例如;
0 function (name) {
"use strict";
if (!headersObj) headersObj = parseHeaders(headers);
if (name) {
return headersObj[lowercase(name)] || null;
}
return headersObj;
}
我在这里做错了什么?
如果我换行
headers: {'Content-Type': 'application/json'}
至
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
POST 请求正在发出。但我不想将其作为表单值发送,而是将请求作为 JSON 发送。