我正在为Angular使用ui路由器并尝试获取当前状态的名称。
在使用3天后,我发现当我使用templateUrl时它是空的。 将其更改为模板后:' test',状态名称会神奇地显示...
是否有可能使其有效? Here is the demo
Code on above link
答案 0 :(得分:11)
这里需要一个$ watch,因为它是异步的,我们不能依赖于时间:
myApp.controller('navCtrl', ['$state', '$scope','$timeout', function($state, $scope, $timeout){
$scope.currState = $state;
console.log("This one have some objects: ");
console.log('by reference:', $scope.currState);
console.log('by value:', JSON.parse(JSON.stringify($scope.currState)));
// console.log("But when I want to access name its empty: ");
// $timeout(function() {
// console.log($state.current.name);
// });
// use this instead:
$scope.$watch('currState.current.name', function(newValue, oldValue) {
console.log(newValue);
});
}]);
console.log('by reference:', $scope.currState);
确实有效,因为它使用了对象的引用。当我们在控制台中看到它时,对象已经改变了。
与上面console.log('by value:', JSON.parse(JSON.stringify($scope.currState)));
的输出进行比较,该输出在执行点冻结输出。你会发现一个空的$state.current.name
。
另见:How can I change the default behavior of console.log? (*Error console in safari, no add-on*)