gpt4 book ai didi

angularjs - 从 Angular 工厂中的 HTTP 返回响应数据

转载 作者:行者123 更新时间:2023-12-04 17:35:55 29 4
gpt4 key购买 nike

.factory('Api', function($http) {
var API = "http://127.0.0.1:4567/";
return {
get: function(method) {
return $http.get(API + method).success(function(result) {
return result;
});
}
}
}

然后
console.log(Api.get("MAppData"));

退货
Object {then: function, success: function, error: function}

为什么不返回结果(响应数据)?

最佳答案

$http返回一个 promise ,你需要链接 .then()获取这样的数据:

Api.get("MAppData").then(function(response){
var data = response.data;
});

关于angularjs - 从 Angular 工厂中的 HTTP 返回响应数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19121918/

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