更改路径时的AngularJS UI-Router事件

前端之家收集整理的这篇文章主要介绍了更改路径时的AngularJS UI-Router事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用ngRoute可以在事件中挂钩:$routeChangeStart并执行不同的操作……
app.run(function ($rootScope,$location) {
    $rootScope.$on("$routeChangeStart",function (event,next,current) {
    ................

使用UI-Router可以实现相同的功能吗?

是的,这是可能的:
$rootScope.$on("$stateChangeStart",toState,toParams,fromState,fromParams) {
原文链接:/angularjs/141018.html

猜你在找的Angularjs相关文章