Heim > Fragen und Antworten > Hauptteil
controllers.controller('ctrl', ['$scope', function($scope) {
console.log($scope);//
$scope.add = function() {
console.log($scope);//
};
}]);
为什么上面两个作用域的输出是不相等的?
曾经蜡笔没有小新2017-05-15 17:00:04
两处输出都是指向控制器绑定的$scope。第一个在加载controller时就运行,第二个在add方法调用时执行。两者执行时间不一样,状态不一样。