将请求放入RestFull webService时出错400

时间:2017-10-03 08:42:07

标签: angularjs web-services put

我需要调用Web服务来获取一些数据,但是当我使用这段代码时:

app.controller('Hello', function($scope, $http) {

var config = {
  headers:  {
        "loginName": 'opzudecche',
        "password" : "****"
    }
};

$http.put("WEBSERVICEURL", config).then(function(response) {
  $scope.greeting = response.data;
});



});

它继续给我一个错误400 ...我错了?

1 个答案:

答案 0 :(得分:2)

首先检查服务是否正常,然后使用此代码

var app = angular.module('Hello', '$http', []);
app.controller('myCtrl', function($scope, $http) {

  $http({
    method: "PUT",
    url: "WEBSERVICEURL",
    headers: {
      'loginName': 'opzudecche',
      'password': "****"
    },
  }).then(function mySuccess(response) {
    $scope.greeting = response.data;
  }, function myError(response) {
    $scope.error = response.data;
  });

});