如何查看 AngularJS/UI-Router 中配置了哪些状态? [英] How to see what states are configured in AngularJS / UI-Router?

查看:23
本文介绍了如何查看 AngularJS/UI-Router 中配置了哪些状态?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法查看 $stateProvider 上设置的所有状态?

Is there a way to see all of the states that have been set on $stateProvider?

在这种情况下,我希望我的状态分配分布在多个文件中.我想在不同的文件中检查 runconfig 上的构建状态.

In this case, I would like my state assignments to be distributed across many files. I would like to inspect the built states on run or config in a different file.

例如:

# component1.coffee
angular.module('zoo').config ($stateProvider) ->
  $stateProvider.state 'component1',
    url: '/component1'
    template: _template
    controller: 'Component1Ctrl'

# component2.coffee
angular.module('zoo').config ($stateProvider) ->
  $stateProvider.state 'component2',
    url: '/component2'
    template: _template
    controller: 'Component2Ctrl'

# componentNavigation.coffee
angular.module('zoo').run ($state) ->
  console.log 'All configured states:', $state.configuredStates # doesn't exist.

有什么东西可以列出两个状态,component1component2?

Is there something that will list out the two states, component1 and component2?

推荐答案

$state.get()

返回所有状态的数组.包括顶级抽象状态,但您可以根据需要将其过滤掉.

returns an array of all states. Includes the top-level abstract state, but you can filter that out if you want.

如何在 ui-router 中枚举注册状态?

这篇关于如何查看 AngularJS/UI-Router 中配置了哪些状态?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆