使用ngRoute可以在事件中挂钩:$routeChangeStart并执行不同的操作……
app.run(function ($rootScope,$location) { $rootScope.$on("$routeChangeStart",function (event,next,current) { ................
使用UI-Router可以实现相同的功能吗?
是的,这是可能的:
原文链接:/angularjs/141018.html$rootScope.$on("$stateChangeStart",toState,toParams,fromState,fromParams) {