Skip to main content
added 92 characters in body
Source Link
Ankit Agarwal
  • 30.8k
  • 5
  • 41
  • 63

You can use this without page refresh. This will reload the view:

$state.transitionTo($state.current, $stateParams, { reload: true, inherit: false, notify: true }); 

or else try this

$state.go($state.current.name,{},{reload: $state.current.name}); 

You can use this without page refresh. This will reload the view:

$state.transitionTo($state.current, $stateParams, { reload: true, inherit: false, notify: true }); 

You can use this without page refresh. This will reload the view:

$state.transitionTo($state.current, $stateParams, { reload: true, inherit: false, notify: true }); 

or else try this

$state.go($state.current.name,{},{reload: $state.current.name}); 
Source Link
Ankit Agarwal
  • 30.8k
  • 5
  • 41
  • 63

You can use this without page refresh. This will reload the view:

$state.transitionTo($state.current, $stateParams, { reload: true, inherit: false, notify: true });