Fetching Json Data In The Controller
With the command console.log($scope.data) I can see my json file. I can also see the whole items in the view with
but console.log($scope.data[0
Solution 1:
It seems that you've stripped down all the relevant details (e.g. service.query
implementation) from the question.
This plunker may shed some light on what's going on.
var app = angular.module('app', []);
app.factory('data', function ($timeout) {
var data = [];
return {
query: function () {
$timeout(function () {
data.push(1, 2, 3);
}, 1000);
setTimeout(function () {
data.push('Oops, ng-repeat is unconscious of this one');
}, 2000);
return data;
}
};
});
app.controller('AppController', function($scope, data) {
$scope.data = {
agile: [1, 2, 3],
lazy: data.query()
};
$scope.$watch('data.lazy', function (newVal, oldVal) {
if (newVal === oldVal) return;
console.log($scope.data.lazy[0]);
}, true);
});
Post a Comment for "Fetching Json Data In The Controller"