相关问题:AngularJS Decorator without object.defineProperty
似乎应用装饰器的标准方法是 withobject.defineProperty
但在 IE7 中不受支持。
有一些 polyfill 选项object.defineProperty
:
我还在plunkr中做了一些实验,得到了一些有趣的结果。
<div ng-controller="ParentCtrl">
<div ng-controller="ChildCtrl"></div>
</div>
<div ng-controller="SiblingCtrl"></div>
var app = angular.module('plunker', []);
app.config(['$provide', function($provide){
$provide.decorator('$rootScope', ['$delegate', function($delegate){
$delegate.a = 1;
$delegate.constructor.prototype.b = 2;
Object.defineProperty($delegate.constructor.prototype, 'c', {
value: 3
});
return $delegate;
}]);
}]);
app.controller('ParentCtrl', function($rootScope, $scope) {
console.info('ParentCtrl', $rootScope.a); // 1
console.info('ParentCtrl', $rootScope.b); // 2
console.info('ParentCtrl', $rootScope.c); // 3
console.info('ParentCtrl', $rootScope.constructor.prototype.a); // undefined
console.info('ParentCtrl', $rootScope.constructor.prototype.b); // 2
console.info('ParentCtrl', $rootScope.constructor.prototype.c); // 3
$rootScope.a = 'a';
$rootScope.b = 'b';
$rootScope.c = 'c';
});
app.controller('ChildCtrl', function($rootScope, $scope) {
console.info('ChildCtrl', $rootScope.a); // 1
console.info('ChildCtrl', $rootScope.b); // b
console.info('ChildCtrl', $rootScope.c); // 3
console.info('ChildCtrl', $rootScope.constructor.prototype.a); // undefined
console.info('ChildCtrl', $rootScope.constructor.prototype.b); // 2
console.info('ChildCtrl', $rootScope.constructor.prototype.c); // 3
});
app.controller('SiblingCtrl', function($rootScope, $scope) {
console.info('SiblingCtrl', $rootScope.a); // a
console.info('SiblingCtrl', $rootScope.b); // b
console.info('SiblingCtrl', $rootScope.c); // 3
console.info('SiblingCtrl', $rootScope.constructor.prototype.a); // undefined
console.info('SiblingCtrl', $rootScope.constructor.prototype.b); // 2
console.info('SiblingCtrl', $rootScope.constructor.prototype.c); // 3
});
我的问题是:像这个答案所示,这是为 rootScope 提供方法的正确方法。