简体   繁体   English

Angular $ http.post不发送任何数据

[英]Angular $http.post not sending any data

I'm super stuck with trying to simply post JSON data but for some reason it won't work. 我非常想尝试简单地发布JSON数据,但是由于某种原因,它将无法正常工作。

angular.module('pocket.controllers', [])
  .controller('ArticleList', function($scope, $http) {

    $scope.signIn = function() {

      var postObject = new Object();
      postObject.consumer_key = pocketKey;
      postObject.redirect_uri = "http://www.example.com";

      $http.post(apiUrl, postObject).success(function(data){
        alert(data);
      });
    }

  })

When I inspect the request in the Chrome inspector it doesn't seem like any data is actually being posted: 当我在Chrome检查器中检查请求时,似乎没有实际发布任何数据:

Request URL:https://getpocket.com/v3/oauth/request
Request Method:OPTIONS
Status Code:400 Bad Request
Request Headersview source
Accept:*/*
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Access-Control-Request-Headers:accept, origin, x-requested-with, content-type
Access-Control-Request-Method:POST
Cache-Control:no-cache
Connection:keep-alive
Host:getpocket.com
Origin:http://pocket.dev:8000
Pragma:no-cache
Referer:http://pocket.dev:8000/app/index.html
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.71 Safari/537.36
Response Headersview source
Cache-Control:private
Connection:keep-alive
Content-Length:15
Content-Type:text/html; charset=UTF-8
Date:Wed, 24 Jul 2013 17:18:04 GMT
P3P:policyref="/w3c/p3p.xml", CP="ALL CURa ADMa DEVa OUR IND UNI COM NAV INT STA PRE"
Server:Apache/2.2.25 (Amazon)
Status:400 Bad Request
X-Error:Missing consumer key.
X-Error-Code:138
X-Powered-By:PHP/5.3.27
X-Source:Pocket

As you can see, the X-Error is "Missing consumer key" which implies the data is not being posted correctly. 如您所见,X错误是“缺少用户密钥”,这表示数据未正确发布。

Add this line to your code; 将此行添加到您的代码中;

$http.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded"; $ http.defaults.headers.post [“ Content-Type”] =“ application / x-www-form-urlencoded”;

Modified code will be like this; 修改后的代码将是这样;

angular.module('pocket.controllers', []) .controller('ArticleList', function($scope, $http) { angular.module('pocket.controllers',[]).controller('ArticleList',function($ scope,$ http){

 $scope.signIn = function() { var postObject = new Object(); postObject.consumer_key = pocketKey; postObject.redirect_uri = "http://www.example.com"; $http.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded"; $http.post(apiUrl, postObject).success(function(data){ alert(data); }); } 

}) })

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM