angularjs – 如何枚举ui路由器中注册的状态?

前端之家收集整理的这篇文章主要介绍了angularjs – 如何枚举ui路由器中注册的状态?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如果有一个方法来列出所有注册的状态,当使用 ui-router
如果你查看$ state.get()的文档的最新版本的ui-router,你会注意到没有传递参数到函数应该返回一个所有配置的状态对象的数组。
/**
 * @ngdoc function
 * @name ui.router.state.$state#get
 * @methodOf ui.router.state.$state
 *
 * @description
 * Returns the state configuration object for any state by passing the name
 * as a string. Without any arguments it'll return a array of all configured
 * state objects.
 *
 * @param {string|object} stateOrName The name of the state for which you'd like 
 * to get the original state configuration object for.
 * @returns {object} State configuration object or array of all objects.
 */
原文链接:https://www.f2er.com/angularjs/145290.html

猜你在找的Angularjs相关文章