admin管理员组文章数量:1344520
I have the situation where i need access to multiple directive controller methods.
I can access a method from a parent directive using the require like so:
require:"^parentDirective"
but I also need to access a method within a seperate directive (not a parent), the documentation says to use an array of strings like so:
require:["^parentDirective","directiveTwo"]
but doing this causes errors although the both directives have been piled to the DOM.
Am I missing something here?
here is my directive:
angular.module('testModule', ['parentModule'], function () {
}).directive('testDirective', function() {
return {
restrict: 'AE',
templateUrl: 'testTemplate.tpl.html',
scope: {
value1: "=",
value2: "="
},
require:['^parentDirective','otherDirective'],
controller: function($scope,$modal,socketConnection) {
if(case_x == true){
$scope.requiredController_1.ctrl1Func();
}
else if(case_x == false){
$scope.requiredController_2.ctrl2Func();
}
},
link: function(scope,element,attrs,requiredController_1,requiredController_2){
scope.requiredController_1 = requiredController_1;
scope.requiredController_2 = requiredController_2;
}
};
});
I have the situation where i need access to multiple directive controller methods.
I can access a method from a parent directive using the require like so:
require:"^parentDirective"
but I also need to access a method within a seperate directive (not a parent), the documentation says to use an array of strings like so:
require:["^parentDirective","directiveTwo"]
but doing this causes errors although the both directives have been piled to the DOM.
Am I missing something here?
here is my directive:
angular.module('testModule', ['parentModule'], function () {
}).directive('testDirective', function() {
return {
restrict: 'AE',
templateUrl: 'testTemplate.tpl.html',
scope: {
value1: "=",
value2: "="
},
require:['^parentDirective','otherDirective'],
controller: function($scope,$modal,socketConnection) {
if(case_x == true){
$scope.requiredController_1.ctrl1Func();
}
else if(case_x == false){
$scope.requiredController_2.ctrl2Func();
}
},
link: function(scope,element,attrs,requiredController_1,requiredController_2){
scope.requiredController_1 = requiredController_1;
scope.requiredController_2 = requiredController_2;
}
};
});
Share
Improve this question
edited Aug 26, 2014 at 14:13
user1005240
asked Aug 26, 2014 at 13:16
user1005240user1005240
2854 silver badges15 bronze badges
2
- Can you put all three directives in a fiddle or plunker? The only thing I see wrong is in the link function the function receives an array of controllers, not each controller individually (unless that's changed). – Jesus is Lord Commented Aug 26, 2014 at 13:34
- 1 Here's a plunker to what I am trying to do but it still doesnt seem to be working and again, I am unsure why. – user1005240 Commented Aug 26, 2014 at 15:00
2 Answers
Reset to default 7I think this is close to what you want (hopefully):
http://plnkr.co/edit/WO6SROdVFOYlR22JQJPb?p=preview
Here were some thoughts:
I think the
controller: function () {}
is executed on the way down, whereas thelink: function () {}
is executed on the way back up (which happens after it walks down the DOM tree), meaning you needed to move your code that depends on other controllers from the directive controller to the directive link function.Directives that utilize
require
can only require directives on parent elements (using^
) or the current element. You had in your html, originally, your elements all siblings. If that needs to be the case you need to wrap all the siblings in a fourth directive that they all "require
".When you do
require: []
an array is passed into the link function. Hence:link: function(scope, element, attrs, controllers) { var parent1 = controllers[0]; var other = controllers[1]; }
Does that answer everything?
You need a ma after the require statement
require:['^parentDirective','otherDirective'], //<--- right there
Here's a plunker to show it working while requiring multiple directives
本文标签: javascriptUsing multiple directives in require with AngularjsStack Overflow
版权声明:本文标题:javascript - Using multiple directives in require with Angularjs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743707863a2525422.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论