If your Angular app has some decent complexity, it will not be easy to use UI Router straight away. Here are some hints on how to get around.
Accessing the UI Router $state service from the browser console
$state = angular.element(document.body).injector().get('$state')
: Retrieves the Angular injector and asks it for the $state
service.
Inspecting the current state
$state.current
Inspecting params of the current state
$state.params
Posted by Dominik Schöler to makandra dev (2017-10-26 09:16)