This worked for me.
It took me a while to get it to work. I tried reload:true and some state redirections but found this to be the neatest solution.
controller
$scope.$on("$ionicView.enter", function () {
$scope.guests.length = 0;
});
router
.state('menu.import', {
url: '/import',
views: {
'side-menu22': {
templateUrl: 'js/import/import-form/import-form.html',
controller: 'importCtrl',
controllerAs: 'importCtrl',
}
},
....
})