我不确定这是做到这一点的方法,但我的目标如下:
当然问题是父指令和子指令是兄弟姐妹。所以我不知道该怎么做。注意 - 我不想在
中设置数据小提琴:http://jsfiddle.net/rrosen326/CZWS4/
HTML:
<div ng-controller="parentController">
<parent-dir dir-data="display this data">
<child-dir></child-dir>
</parent-dir>
</div>
的Javascript
var testapp = angular.module('testapp', []);
testapp.controller('parentController', ['$scope', '$window', function ($scope, $window) {
console.log('parentController scope id = ', $scope.$id);
$scope.ctrl_data = "irrelevant ctrl data";
}]);
testapp.directive('parentDir', function factory() {
return {
restrict: 'ECA',
scope: {
ctrl_data: '@'
},
template: '<div><b>parentDir scope.dirData:</b> {{dirData}} <div class="offset1" ng-transclude></div> </div>',
replace: false,
transclude: true,
link: function (scope, element, attrs) {
scope.dirData = attrs.dirData;
console.log("parent_dir scope: ", scope.$id);
}
};
});
testapp.directive('childDir', function factory() {
return {
restrict: 'ECA',
template: '<h4>Begin child directive</h4><input type="text" ng-model="dirData" /></br><div><b>childDir scope.dirData:</b> {{dirData}}</div>',
replace: false,
transclude: false,
link: function (scope, element, attrs) {
console.log("child_dir scope: ", scope.$id);
scope.dirData = "No, THIS data!"; // default text
}
};
});
答案 0 :(得分:27)
如果您需要这种通信,则需要在子指令中使用require
。这将需要父controller
,因此您需要controller
,其中包含您希望子指令使用的功能。
例如:
app.directive('parent', function() {
return {
restrict: 'E',
transclude: true,
template: '<div>{{message}}<span ng-transclude></span></div>',
controller: function($scope) {
$scope.message = "Original parent message"
this.setMessage = function(message) {
$scope.message = message;
}
}
}
});
控制器在$scope
中有一条消息,您有一种方法可以更改它。
为什么$scope
中有一个人使用this
?您无法访问子指令中的$scope
,因此您需要在函数中使用this
,以便您的子指令能够调用它。
app.directive('child', function($timeout) {
return {
restrict: 'E',
require: '^parent',
link: function(scope, elem, attrs, parentCtrl) {
$timeout(function() {
parentCtrl.setMessage('I am the child!')
}, 3000)
}
}
})
如您所见,链接接收带有parentCtrl的第四个参数(或者如果有多个,则为数组)。在这里,我们等待3秒,直到我们调用我们在父控制器中定义的方法来更改其消息。
答案 1 :(得分:6)
首先,请注意this video。它解释了这一切。
基本上,您需要require: '^parentDir'
,然后它会传递到您的链接功能:
link: function (scope, element, attrs, ParentCtrl) {
ParentCtrl.$scope.something = '';
}