Problem with collection-repeat and updating items

If you don’t want to disable caching, but want specific code to be called each time a view is entered, you can use this in your controller:

$scope.$on('$ionicView.enter', function() {
  // code to run each time view is entered
});
1 Like