AngularJS $routeChangeSuccess回调参数

前端之家收集整理的这篇文章主要介绍了AngularJS $routeChangeSuccess回调参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是AngularJS的新手,并且有关于事件监听器的文档感到困惑.

该文档列出了$routeChangeSuccess事件的以下内容

$routeChangeSuccess Broadcasted after a route dependencies are
resolved. ngView listens for the directive to instantiate the
controller and render the view.

Type:

broadcast Target:

root scope

但是,它没有引用传递给回调函数的任何参数.然而,我在这里看到的大多数示例都有类似的回调函数列表:

$rootScope.$on("$routeChangeSuccess",function(event,next,current) {
   ...
});

根据AngularJS文档,所有回调都有第一个参数作为事件.我明白了.但是下一个和现在来自哪里?在任何文件中列出了哪些?

它的文件记载在版本少于1.2,看到这个 old documentation.但似乎他们没有注意到他们的广播事件的回调签名丢失.另一方面,如果您不介意从他们的github资源库中读取,可以查看此 line here的$routeChangeSuccess回调参数.

更新:
对于Route对象,实际上可以参考$route属性documented here.

原文链接:https://www.f2er.com/angularjs/140731.html

猜你在找的Angularjs相关文章