0
我在我的主控制器中有一個範圍,然後在隔離範圍內輸入我的鏈接函數。有沒有辦法從我的鏈接功能訪問主範圍?這裏是什麼,我試圖做一個簡化的版本:在Angular中的鏈接函數中訪問範圍
角:
angular.module('root', [])
.controller('index', ['$scope', function($scope){
$scope.messages = ["Hello", "Howdy", "What's up"]
}
.directive('myDirective', function() {
return {
restrict: 'E',
scope: { greeting: '=' },
link: function(scope, element, attrs) {
var greeting = scope.greeting; //one message from the array, fed in by <my-directive greeting='message'> from index.html
var length = scope.messages.length; //length of whole messages array
//do stuff
}
}
}
HTML:(的index.html)
<body ng-app='root' ng-controller='index'>
<div ng-repeat='message in messages'>
<my-directive greeting='message'></my-directive>
</div>
</body>
我希望能夠同時訪問的消息和關於來自我的鏈接函數的整個消息數組的「元」信息。但是,現在我只能訪問消息(var greeting),但是長度變量不計算。 有沒有辦法做到這一點在角?
讓我知道你是否需要任何其他澄清!