अलग-अलग स्कोप के साथ निर्देश का टेम्प्लेट कंट्रोलर ('Ctrl') $ rootScope वैरिएबल को एक्सेस करने में सक्षम नहीं लगता है, हालाँकि, जो डायरेक्टर के कंट्रोलर में दिखाई देता है। मुझे समझ में आया कि क्यों नियंत्रक ('Ctrl') $ स्कोप वैरिएबल अलग-अलग स्कोप में दिखाई नहीं देता है।
HTML:
<div ng-app="app">
<div ng-controller="Ctrl">
<my-template></my-template>
</div>
<script type="text/ng-template" id="my-template.html">
<label ng-click="test(blah)">Click</label>
</script>
</div>
जावास्क्रिप्ट:
angular.module('app', [])
.controller('Ctrl', function Ctrl1($scope, $rootScope) {
$rootScope.blah = 'Hello';
$scope.yah = 'World'
})
.directive('myTemplate', function() {
return {
restrict: 'E',
templateUrl: 'my-template.html',
scope: {},
controller: ["$scope", "$rootScope", function($scope, $rootScope) {
console.log($rootScope.blah);
console.log($scope.yah);,
$scope.test = function(arg) {
console.log(arg);
}
}]
};
});
वैरिएबल को अलग-अलग दायरे के साथ एक्सेस किया जाता है - जैसा कि आइसोलेट स्कोप लाइन को कमेंट करके देखा जा सकता है:
// scope: {},
directive('myTemplate', function($rootScope) { ... })
?