如何将页面重新加载到特定路由?

时间:2014-01-30 22:56:48

标签: angularjs

如果用户点击网页重新加载,无论应用当前位于哪条ng路线,如何设置我的AngularJS应用重定向到特定路线?

例如,如果用户位于'/ phones /:phoneId',当用户重新加载页面时,路线将设置为'/ phones'。

1 个答案:

答案 0 :(得分:1)

您可以从run block更改$位置:

  

运行块 - 在创建并使用注入器后执行   启动应用程序。

var myApp = angular.module('myApp');

myApp.run(function($location) {
    $location.path("/phones");
});