是否可以选择使用,分享,继承"指令控制器的范围由另一个指令? 重要的是,没有亲子关系,而不是兄弟姐妹。使用以下代码,我收到控制器" creditableSumB"的错误消息。没有找到:
timeTrackingModule.directive("creditableSum", function ($rootScope) {
return {
restrict: 'EAC',
require: '^^creditableSumB',
link: function (scope, element, attrs, ctrl) {
console.log(scope);
},
template: '<div>' +
'LOL' +
'</div>'
}
})
timeTrackingModule.directive("creditableSumB", function ($rootScope) {
return {
scope: {},
restrict: 'EAC',
controllerAs: 'creditableSumB',
link: function (scope, element, attrs, ctrl) {
console.log(scope);
},
template: '<div>' +
'LOL' +
'</div>'
}
})