angularjs - Equivalent to target="_self" programatically in angular -
is there way full reload of app using
$state.go('/', {}, {reload: true});
which have same effect if user clicked link target="_self"
?
ok found solution doc:
$window.location.href = '/';
Comments
Post a Comment