我需要调用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 ...我错了?
答案 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;
});
});