0

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);
        }
    }
});
4

2 に答える 2

1

{data :} を持つ角度待機オブジェクトを返します。

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} として返す

于 2015-10-11T23:03:41.767 に答える