从Angular $http POST传递数据数组

前端之家收集整理的这篇文章主要介绍了从Angular $http POST传递数据数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要通过Nancy框架将一系列的对象从我的Angular应用程序传递给.Net Web服务。

我试过这个:

function TestCtrl($scope,$http){
    $scope.postTest = function(){

        var data = [obj1,obj2,obj3];

        $http({
            url: 'myURL',method: "POST",data: data,headers: {
                     'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
            }
        }).success(function(data){
            alert("done");
        });
    }
}

但服务器发送500内部服务器错误
我不知道为什么它不起作用我不是专家的网络服务专家,但我认为这是一个序列化问题。

有人能帮我吗?

根据 this post,你是对的,这是关于序列化。 Angular doesn’t automatic serialize the data for you,您需要在发送之前分析数据:
...

$http({
  url: 'myURL',data: $.param(data),headers: {
    'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
  }
})...

如果您不使用jQuery,则需要滚动自己的$ .parse。有一个snippet here或者你可以adapt jQuery implementation

原文链接:https://www.f2er.com/angularjs/144338.html

猜你在找的Angularjs相关文章