如何在角度使用浏览器后退和前进按钮时触发页面刷新

时间:2014-07-11 15:24:51

标签: angularjs google-chrome

我使用角度。每当我在网址中添加参数/#/?param1=asd&param2=123时  /#/?param1=asd&param2=123&param3=1233标签不刷新。它只是触发回调

$scope.$on('$locationChangeStart', function(event) {
    // ...
}); 

如果网址发生更改而不仅仅是状态更改,如何强制我的网络应用刷新?

1 个答案:

答案 0 :(得分:1)

也许你需要设置

$window.location.href

这会在更改URL后重新加载页面。 use of $location in AngularJS