1

nettuts Building a Web App From Scratch in AngularJSのチュートリアルに従っていますが、Google スプレッドシートから独自の json 呼び出しを使用しています。ただし、検索フィルターが機能していないようです。

編集:フィードバックに基づいて、ここに単純化された例があります

    app.controller("mainController", function($scope, $http){
    $scope.results = [];
    $scope.filterText = null;
    $scope.init = function() {

    var sheet = "od6"; //upcoming classes
    var key = "0AhVWrVLsk5a5dDJyaW1LMXFEVk1UY0FPVlBVcHd1bGc";
    var url = "http://spreadsheets.google.com/feeds/list/" + key + "/" + sheet + "/public/values?alt=json-in-script";



    $http.jsonp(url + '&callback=JSON_CALLBACK').success(function(data) {

        angular.forEach(data, function(value, index){

        angular.forEach(value.entry, function(classes, index){

        $scope.results.push(classes);

                });

            });

        }).error(function(error) {

        });

    };

});

その後、次のように設定するのはかなり簡単なようです。

    <input type="text" ng-model="filterText" placeholder="Enter text here">
<ul>
    <li ng-repeat="classes in results | filter:filterText>
                    <h3>{{classes.gsx$title.$t}}</h3>
                <p>{{classes.gsx$description1.$t}}</p>
<ul>
                <li><strong>Start:</strong> {{classes.gsx$start.$t}} </li>
                <li><strong>End:</strong> {{classes.gsx$finish.$t}} </li>
                <li><strong>Price:</strong> {{classes.gsx$price.$t}} </li>
                <li><strong>Seats:</strong> {{classes.gsx$spots.$t}} </li>
                <li><strong><a href = "{{classes.gsx$url.$t}}">Sign up now</a></strong></li>
            </ul>
</li>

</li>
</ul>

しかし、filterText 検索を実行すると、結果が得られません。ページが空になります。ここに完全なコード例があります。

http://plnkr.co/edit/ZnVqyeQ9OWqwzjIEplOU?p=preview

ここにjson応答があります:

json レスポンス

どうもありがとう!

4

1 に答える 1