我是AngularJS的初学者,我对$ scope的种类有疑问:
app.run(['$rootScope', '$route', function($rootScope, $route) {
$rootScope.$on('$routeChangeSuccess',function() {
console.log($route.current);
document.title = $route.current.scope.title;
});
}]);

这是我的控制台屏幕:
由于