How to $watch state change of $stateProvider in AngularJS?

后端 未结 2 1633
被撕碎了的回忆
被撕碎了的回忆 2020-12-02 10:09

I know that I can run:

scope.$watch(someItem, function(){})

But I can\'t figure out a way to watch over change of $state.$current.nam

2条回答
  •  再見小時候
    2020-12-02 10:55

    It's in the docs: https://github.com/angular-ui/ui-router/wiki#state-change-events

    $rootScope.$on('$stateChangeStart', 
    function(event, toState, toParams, fromState, fromParams){ 
        // do something
    })
    

提交回复
热议问题