无法在AngularJS中发布数据

时间:2014-06-29 18:39:55

标签: javascript html angularjs angularjs-directive

我正在构建一个小应用程序,用于从一个JSON文件中获取数据并将其发布到另一个JSON文件。我正在使用AngularJS以及ngResource$http服务来实现功能。

我能够使用GET方法读取数据,但POST未将数据发布到我的另一个JSON文件。

以下是我的控制器和服务定义:

'use strict';

/* Controllers */

var boookbAppControllers = angular.module('boookbAppControllers', []);

boookbAppControllers.controller('boookbAppCtrl', ['$scope','$http','Book',
  function($scope,$http,Book) {

    $scope.way=["Normal","$http","RestFul"]



    $http.get('data/books.json').success(function(data) {
    $scope.b1 = data;

    $scope.addBook1=function(){ 


        $http.post('data/newbooks.json',{ "catalogRefIds" : $scope.books[0].title,   "productId" : $scope.books[0].author}).then(function(response,status){
        $scope.a=status;
        alert($scope.a);

        });
    } 

    $scope.b2 = Book.query();


    $scope.newBookName="";
    $scope.userBook="";
    $scope.userBookAuthor="";
    $scope.newBookAuthor="";
    $scope.bookData={};

    $scope.addBook=function(){
    $scope.userBook=$scope.newBookName;
    $scope.userBookAuthor=$scope.newBookAuthor; 

    Book.add({},$scope.bookData);

    }
  });
  }]);


'use strict';

/* Services */

var boookbAppServices = angular.module('boookbAppServices', ['ngResource']);

boookbAppServices.factory('Book', ['$resource',
  function($resource){
    return $resource('data/:bookId.json', {}, {
      query: {method:'GET', params:{bookId:'books'}, isArray:true},
      add: {method:'POST',params:{bookId:'books'},isArray: true}    
    });
  }]);

我检查了POST数据的跟踪,但没有发送任何数据。

3 个答案:

答案 0 :(得分:0)

我不知道你要通过POST到.json文件来做什么。话虽这么说,假设您实际上正在处理POST请求服务器端而没有看到任何数据,这很可能是问题所在:

Angular发布数据的方式与jQuery不同,例如 - 它将其作为application/json发送,而不是application/x-www-form-urlencoded。因此,在PHP中,例如,如果您选中$_POST['key'],则无法找到它。您可以选择处理服务器端:

$_JSON = file_get_contents("php://input");
$_JSON = json_decode($_JSON, TRUE);
echo $_JSON['key'];

或者您可以将其转换为客户端的表单数据:

boookbAppControllers.config(function($httpProvider) {
    $httpProvider.defaults.headers.post  = {'Content-Type': 'application/x-www-form-urlencoded'};
    $httpProvider.defaults.transformRequest = function(data) {
      if (data === undefined) return data;
      var clonedData = clone(data);
      for (var property in clonedData)
         //you could do this with hasOwnProperty probably,
         //but this works unless you prepend variable keys
         //with $
         if (property.substr(0, 1) == '$')
           delete clonedData[property];

      return $.param(clonedData);
    };
});

答案 1 :(得分:0)

请查看$ http.post语法:我们需要使用关键字数据封装实际数据来传递数据。

    $http.post('data/newbooks.json', data : { "catalogRefIds" : $scope.books[0].title,   "productId" : $scope.books[0].author}).then(function(response,status){
            $scope.a=status;
            alert($scope.a);
            });

答案 2 :(得分:0)

发布JSON数据时,请使用 Content-Type 作为文本/纯文本,并在angular 1.5.11中进行了尝试和测试

$http({
  method : 'POST',
  url : 'http://example.com',
  headers: {
    'Content-Type': 'text/plain',
  },
  data : JSON.stringify({data})
})