gpt4 book ai didi

javascript - 为什么 $httpProvider.interceptors 返回 `undefined` 值

转载 作者:行者123 更新时间:2023-12-03 08:40:01 25 4
gpt4 key购买 nike

我创建了一个使用 Yelp 的 API 的基本 AngularJS 应用,但在使用 $httpProvider.interceptors 解析我的响应时遇到问题。

这是我的应用程序:

var app = angular.module("restaurantList", []);

我的 yelpAPI 服务(未显示)验证我的 API 请求并生成 HTTP 请求。然后,我将收到的数据输出到 Web 控制台,如下所示:

app.controller("mainCtrl", ["$scope", "yelpAPI", function ($scope, yelpAPI) {
$scope.restaurants = [];
yelpAPI.get(function (data) {
$scope.restaurant = data;

console.log($scope.restaurant);

});

}]);

这是我请求的数据:

Object {region: Object, total: 37, businesses: Array[20]}

我希望该数组位于 businesses 属性中。因此,我认为使用 $httpProvider.interceptors 解析在 Object.businesses 数组中找到的对象是个好主意。

这是我发出初始请求时 $httpProvider.interceptors 的样子:

app.config(function ($httpProvider) {
$httpProvider.interceptors.push(function () {
return {
response: function (response) {

return response;
}
}
});
});

这是 $httpProvider.interceptors 现在的样子:

app.config(function($httpProvider) {
$httpProvider.interceptors.push(function() {
return {
response: function(response) {

var old_response = response.businesses,
new_response = [];


for (var i = 0; i < old_response.length; i++) {

var obj = old_response[i],

new_obj = {
restaurant_name: obj.name,
phone_number: obj.display_phone,
yelp_rating: obj.rating,
reservation_url: obj.reservation_url
};

new_response.push(new_obj);
}

return new_response;
}
}
});
});

现在,我收到一条错误,内容为 TypeError: Cannot read property 'businesses' of undefined。有什么我忽略的事情吗?

编辑#1

我在拦截器内使用了console.log(response)来打印我的响应,发现response.businesses实际上应该是response.data.businesses。这解决了我的错误,但现在我的 $http 调用返回 undefined。知道我的新问题是什么吗?

编辑#2

app.factory("yelpAPI", function($http, nounce) {
return {
get: function(callback) {
var method = "GET",
url = "http://api.yelp.com/v2/search";
var params = {
callback: "angular.callbacks._0",
oauth_consumer_key: "my_oauth_consumer_key",
oauth_token: "my_oauth_token",
oauth_signature_method: "HMAC-SHA1",
oauth_timestamp: new Date().getTime(),
oauth_nonce: nounce.generate(),
term: "American",
sort: 2,
limit: 20,
radius_filter: 4000,
deals_filter: true,
actionlinks: true
};
var consumerSecret = "my_consumer_secret",
tokenSecret = "my_token_secret",
signature = oauthSignature.generate(method, url, params, consumerSecret, tokenSecret, {
encodeSignature: false
});
params["oauth_signature"] = signature;
$http.jsonp(url, {
params: params
}).success(callback);
}
}
});

最佳答案

返回带有 {data : }: 的 Angular 等待对象

app.config(function($httpProvider) {
$httpProvider.interceptors.push(function() {
return {
response: function(res) {

var old_response = res.businesses,
new_response = [];


for (var i = 0; i < old_response.length; i++) {

var obj = old_response[i],

new_obj = {
restaurant_name: obj.name,
phone_number: obj.display_phone,
yelp_rating: obj.rating,
reservation_url: obj.reservation_url
};

new_response.push(new_obj);
}

return {data : new_response};
}
}
});
});

返回为 {data : new_response}

关于javascript - 为什么 $httpProvider.interceptors 返回 `undefined` 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33070906/

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