我想用复选框(这是一个重复列表)指令制作一个类别树。
我做了一个名为 categoriesTreeContainer 的指令,其中包含所有类别列表
我做了另一个名为 categoryItem 的指令,它包含了 categoriesTreeContainer <的子类别项目/ p>
这就是我做的 categoriesTreeContainer :
myApp.directive('categoriesTreeContainer', function(){
return {
restrict : 'E',
template : '<category-item ng-repeat="category in categoriesTree" category="category"></category-item>',
scope : {
categoriesTree : "=categoriestree",
selectedCategories : "=ngModel",
},
controller : function($scope, $element, $attrs){
$scope.selectedCategories = [];
$scope.onSelectionChange = function(category){
console.log('yah');
}
}
}
})
categoryItem :
myApp.directive('categoryItem', function($compile){
return {
require: '^categoriesTreeContainer',
restrict : 'E',
//replace : true,
transclude : true,
scope : {
category : "=category"
},
link : function(scope, element, attrs, categoriesTreeCtrl){
console.log(categoriesTreeCtrl);
if(scope.category.subCategories.length>0){
element.append($compile(
'<div class="panel panel-default panel-treelist">'+
'<div class="panel-heading"><h4 class="panel-title">'+
'<label data-toggle="collapse" data-target="#{{category.$$hashKey}}">'+
'<input type="checkbox" ng-change="categoriesTreeCtrl.onSelectionChange(category)" ng-model="category.selected" />'+
' {{category.name}}</label></h4></div><div id="{{category.$$hashKey}}" class="panel-collapse collapse">'+
'<div class="panel-body">'+
'<category-item id="{{category.$$hashKey}}" ng-repeat="subCategory in category.subCategories" category="subCategory" categoriestree="categoriesTree" ng-model="selectedCategories">'+
'</category-item></div></div></div>'
)(scope))
}else{
element.append($compile('<label><input ng-change="categoriesTreeCtrl.onSelectionChange(category)" type="checkbox" ng-model="category.selected"> {{category.name}}</label><br/>')(scope));
}
}
}
})
并在DOM中:
<categories-tree-container categoriestree="categoriesTree" ng-model="selectedCategories"></categories-tree-container>
树按我想要的方式呈现。
问题是必需控制器&#39; ^ categoriesTreeContainer&#39;在categoryItem指令中是void。我在链接函数中为console.log(categoriesTreeCtrl)
做了categoriesTreeCtrl
,这就是我得到的:
c {}
,一个void对象。
我做错了什么?
答案 0 :(得分:6)
categoriesTreeCtrl
将是void object
因为控制器什么都没有。如果您需要从子指令访问categoriesTreeCtrl.onSelectionChange
,则不应将onSelectionChange
作为其$scope
的一部分,而是将其定义为控制器的属性。
controller: function($scope, $element, $attrs){
this.onSelectionChange = function(category){ ... };
// $scope.onSelectionChange = function(category){...}
}
附加:
子指令中的categoriesTreeCtrl
不等于$scope.categoriesTreeCtrl
,这意味着您无法从模板中调用categoriesTreeCtrl
。查看ng-change
值。