angularjs - uirouter - ¿Cómo enumerar los estados registrados en ui-router?
ui router angularjs tutorial (1)
Me gustaría saber si hay una manera de enumerar todos los estados registrados al usar ui-router
Si observa la documentación de $state.get()
para la última versión de ui-router, notará que no pasar argumentos a la función debe devolver una matriz de todos los objetos de estado configurados.
/**
* @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.
*/