$ http post return status code 204 no content Angularjs

时间:2015-10-01 07:10:43

标签: javascript angularjs

使用$http.post将数据发布到服务器时遇到问题。它返回状态代码204 no Content。我做错了什么。在成功回调中,它没有显示响应。

$scope.prod = {},

$scope.AddProduct = function (prod) {
    var data = prod;
    $http.post('/api/Product', JSON.stringify(data), {
        headers: {'Content-Type':'application/json'}
    }).success(function (data) {
        alert(JSON.stringify(data))
    })
}

}); Browser Response while posting

0 个答案:

没有答案