I\'m newbie of angularjs developing and i wrote this simple app, but don\'t understand how i can update view, after the model il loaded from ajax request on startup!
You need to bind an element in your view to a property (simple or object) of your $scope
object. Once the $scope object is updated the view should be updated on its own. That is the beauty of AngularJS.
EDIT: Please register your controller as
photoAppModule.controller('listCtrl', function($scope){
$scope.photos = photos;
});
If photos variable is not available, then you might have to create a service with the variable and inject in the controller.