I have a link. When user will click in this link, then the page will be reloaded. I did it by the following way......
Html
<div data-ng-hide="backHide" class="offset6 pull-right">
<a href="" data-ng-click="backLinkClick()"><< Back <br/> <br/></a>
</div>
JS
$scope.backLinkClick = function () {
window.location.reload(false);
};
In the controller I have used javascript and that seems to me very bad. How can I do it using angularjs
Be sure to include the $route service into your scope and do this:
$route.reload();
See this:
How to reload or re-render the entire page using AngularJS
You can also try this, after injecting $window service.
$window.location.reload();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With