我现在有一些角度方面的经验,但我仍然无法弄清楚那个。我有一个指令 2 通过另一个指令 1 嵌入。Directive1 与控制器位于同一元素上,并且它们共享相同的范围。我希望directive2 从控制器中的范围继承,但它们最终不是父/子,而是兄弟。我在这里想念什么?
这是代码:
angular.module('myModule', [])
.controller('Controller', ['$scope', function($scope) {
console.log('from controller', $scope);
}])
.directive('directive1', function(){
return {
restrict: 'A',
replace: true,
transclude: true,
template: '<div style="width:150px;"> <p>directive1</p>'
+'<div style="width:100px;" ng-transclude></div> </div>',
link: function($scope, elem, attrs){
console.log('from directive1', $scope);
}
}
})
.directive('directive2', function(){
return {
restrict: 'A',
link: function($scope, elem, attrs) {
console.log('from directive2', $scope);
}
}
});
相关的html:
<div x-directive1 ng-controller="Controller">
<div x-directive2> <p>directive2</p> </div>
</div>
以及 jsFiddle 的链接:http: //jsfiddle.net/RFontana/Lm7gA/1/