Force AngularJS to reload a route although option reloadOnSearch is set to false

前端 未结 3 473
-上瘾入骨i
-上瘾入骨i 2020-12-09 18:09

In the route configuration of my AngularJS application most of the routes are defined with the option reloadOnSearch set to false as most of the ti

3条回答
  •  猫巷女王i
    2020-12-09 18:58

    This is also work

    app.controller('appCtrl',function($scope,$window){
               $scope.reload =function(){
                   $window.location.reload(); 
               }
    })
    

    html

    reload

提交回复
热议问题