Showing posts with label Ionic cache false for particular state. Show all posts
Showing posts with label Ionic cache false for particular state. Show all posts

Ionic cache false for particular state

Use below code to cache false for particular state:

.state('main.emp', {
            cache : false,
            url: '/emp',
            views: {
                'main': {
                  templateUrl: 'views/emp-list.html',
                  controller : 'EmpCtrl'
                }
            }
  })