只是为了了解更多范围继承,在阅读完这篇文章后我有一个问题。为什么当我们在同一个标签上声明ng-app
andng-controller
时,这个控制器的作用域不等于rootScope
?
<html ng-app="myApp" ng-controller="MainCtrl"></html>
app.controller( 'MainCtrl', function( $scope , $rootScope ) {
console.log( angular.equals ( $scope , $rootScope ) ); // false
});