如何在Angularjs中修复505 HTTP版本不支持错误?

时间:2016-07-01 07:40:28

标签: javascript angularjs json

代码

$http({
        url: '/ABC',
        method: 'POST',
        async: false,
        params: {
            addData: $scope.Data,
            servicetype: 'persistQuote'
        }
    }).success(function (response, opts) {
        console.log(response);
    }).error(function (data, status, headers, config) {
        console.log("Not Successfull");
    });
  

使用JSON大对象调用HTTP Post请求时发生错误。

0 个答案:

没有答案