gpt4 book ai didi

javascript - 无法使用 $http 读取未定义的属性 'success'

转载 作者:行者123 更新时间:2023-12-03 11:18:43 25 4
gpt4 key购买 nike

在我的 Controller 中我这样做

topicContent.request().success(function(data){
$scope.threadContent = data;
});

在我的工厂我写如下:

app.factory('topicContent', ['$http', function($http){
return
var query = function() {
$http({
url: "http://www.corsproxy.com/daysof.me/lowyat/thread.php",
method: "GET"
});
}

return {
request : function(){
return query();
}


}
}]);

我已检查我的服务没有依赖项错误。知道为什么它说成功是不​​确定的吗?

最佳答案

您没有从 query() 返回任何内容。尝试:

app.factory('topicContent', ['$http', function($http){

var query = function() {
// HERE!!
return $http({
url: "http://www.corsproxy.com/daysof.me/lowyat/thread.php",
method: "GET"
});
}

return {
request : function(){
return query();
}


}
}]);

关于javascript - 无法使用 $http 读取未定义的属性 'success',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27213468/

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