好了,解决了 :) Angular UI Router有这个新方法$ urlRouterProvider.deferIntercept()
https://github.com/angular-ui/ui-router/issues/64
基本上可以归结为:
angular.module('myApp', [ui.router])
.config(['$urlRouterProvider', function ($urlRouterProvider) {
$urlRouterProvider.deferIntercept();
}])
// then define the interception
.run(['$rootScope', '$urlRouter', '$location', '$state', function ($rootScope, $urlRouter, $location, $state) {
$rootScope.$on('$locationChangeSuccess', function(e, newUrl, oldUrl) {
// Prevent $urlRouter's default handler from firing
e.preventDefault();
/**
* provide conditions on when to
* sync change in $location.path() with state reload.
* I use $location and $state as examples, but
* You can do any logic
* before syncing OR stop syncing all together.
*/
if ($state.current.name !== 'main.exampleState' || newUrl === 'http://some.url' || oldUrl !=='https://another.url') {
// your stuff
$urlRouter.sync();
} else {
// don't sync
}
});
// Configures $urlRouter's listener *after* your custom listener
$urlRouter.listen();
}]);
我认为目前该方法仅包含在Angular ui路由器的主版本中,该版本具有可选参数(顺便说一句,也不错)。需要从源代码克隆和构建它
grunt build
也可以通过以下方式从源代码访问这些文档:
grunt ngdocs
(它们已内置到/ site目录中)// README.MD中的更多信息
似乎还有另一种方法可以通过动态参数(我没有使用过)来做到这一点。对nateabele有很多功劳。
附带说明一下,这是Angular UI Router的$ stateProvider 中的可选参数,我将其与以上内容结合使用:
angular.module('myApp').config(['$stateProvider', function ($stateProvider) {
$stateProvider
.state('main.doorsList', {
url: 'doors',
controller: DoorsListCtrl,
resolve: DoorsListCtrl.resolve,
templateUrl: '/modules/doors/doors-list.html'
})
.state('main.doorsSingle', {
url: 'doors/:doorsSingle/:doorsDetail',
params: {
// as of today, it was unclear how to define a required parameter (more below)
doorsSingle: {value: null},
doorsDetail: {value: null}
},
controller: DoorsSingleCtrl,
resolve: DoorsSingleCtrl.resolve,
templateUrl: '/modules/doors/doors-single.html'
});
}]);
它的作用是即使缺少一个参数,也可以解决一个状态。SEO是一个目的,可读性是另一个目的。
在上面的示例中,我希望doorsSingle是必需的参数。目前尚不清楚如何定义它们。不过,它可以与多个可选参数一起使用,因此并不是真正的问题。讨论在这里https://github.com/angular-ui/ui-router/pull/1032#issuecomment-49196090