angularjs路由菜单如何强制刷新?

angularjs路由菜单如何强制刷新?


一用ui-sref-opts

<a  ui-sref="main.routingUnitManger" style="border:1px solid red;" ui-sref-opts="{reload: true}">刷新a>

二用$state.go

<button style="border:1px solid red;" ng-click="refesh()">刷新button>
$scope.refesh=function(){
    $state.go('main.routingUnitManger', {id:1}, {reload: true})
}

三用window.location.reload(true)
 
  
$scope.refesh=function(){
    $location.path('/main/routingUnitManger');
    window.location.reload(true);
}

你可能感兴趣的:(html5)