gpt4 book ai didi

AngularJS $http 成功函数不起作用

转载 作者:行者123 更新时间:2023-12-01 13:38:08 24 4
gpt4 key购买 nike

我是 AngularJS 的新手,我正在按照教程将 REST 请求发送到服务器。这是我的代码

angular.module('myApp')
.controller('MainCtrl', ['$scope','$window','$http', function($scope,$window,$http)
{
$scope.submitForm = function() {
var url = 'http://localhost:8080/Server/config/start';
var request = $http({
method: 'POST',
url: url,
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
transformRequest: function(obj) {
var str = [];
for(var p in obj)
str.push(encodeURIComponent(p) + '=' + encodeURIComponent(obj[p]));
return str.join('&');
},
data: {gsvalue: $scope.name}}).success(function () {});
}

}]);

我在服务器端正确接收到请求,但无法获得响应,成功函数未被调用。我还在控制台上收到两个警告

Error: $http(...).success is not a function

Error: JSON.parse: unexpected character at line 1 column 1 of the JSON data
.......
Possibly unhandled rejection: {}

我找到了一些类似的主题,但无法用它们解决我的问题。

最佳答案

successerror 在 1.6 中被移除。有一些原因:Why are angular $http success/error methods deprecated? Removed from v1.6? .

使用 thencatchfinally,它们是 Promises 的标准。

关于AngularJS $http 成功函数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42402055/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com