Desidero restituire il .state('name')
quando cambio posizione in angolare.
Dal mio run()
può restituire l'oggetto $state
:
.run(function($rootScope, Analytics, $location, $stateParams, $state) {
console.log($state);
ma quando provo ad ottenere $state.current
è oggetto vuoto
.run(function($rootScope, $location, $stateParams, $state) {
console.log($state.current);
config esempio:
.config(function($stateProvider, $urlRouterProvider, AnalyticsProvider) {
$urlRouterProvider.otherwise('/');
$stateProvider
.state('home', {
url: '/',
views: {
'': {
templateUrl: 'views/main.html',
controller: 'MainCtrl'
},
'[email protected]': {
templateUrl: 'views/partials/navigation.html',
controller: 'NavigationCtrl'
},
'[email protected]': {
templateUrl: 'views/partials/weekly.html',
controller: 'WeeklyCtrl'
},
'[email protected]': {
templateUrl: 'views/partials/side-panel.html',
controller: 'SidePanelCtrl'
},
'[email protected]': {
templateUrl: 'views/partials/shop-panel.html',
controller: 'ShopPanelCtrl'
},
'[email protected]': {
templateUrl: 'views/partials/footer.html',
controller: 'FooterCtrl'
}
}
})
Puoi fornire una spiegazione del motivo per cui il codice nella domanda non ha funzionato? – dmr07
È stato deprecato; devi usare IHookRegistry ora @ danm07 http://angular-ui.github.io/ui-router/feature-1.0/interfaces/transition.ihookregistry.html#onstart –
Questo snippet mostrerà il nome di ogni stato quando carichi sulla pagina ... $ rootScope. $ on ('$ stateChangeSuccess', function() { alert ($ state.current.name); } ); –