Chrome で Error fetching feed: Undefined, 0 というエラーが表示されます。何かアドバイスはありますか?
私の角度コードは次のとおりです。
// Begin SimpleController, with data
demoApp.controller('SimpleController', function($scope, $http){
var url = "http://www.grabapper.com/api/v1/iosapps.json";
$http.jsonp(url).
success(function(data,status,headers,config){
$scope.feed = {
title: 'DailyJS',
items: data
};
}).
error (function(data,status,headers,config){
console.error('Error fetching feed:', data,status);
});
});
// End SimpleController
all.html:
<li ng-repeat="item in feed.items">
{{item.name}}
</li>