ho dati gerarchici come questo:angolare aggiunge genitore valore di attributo
[
{
"children":[
{
"children":[...],
[...]
},
{
"children":[...],
[...]
},
],
[...]
}
]
voglio costruire griglia ad albero appiattendo tali dati. Sto usando seguenti direttive:
app.directive('tree', function (hierarchyService, logger, $timeout) {
return {
scope: {
data: '='
},
restrict: 'E',
replace: true,
template: '<div>' +
'<table class="table table-striped table-hover">' +
' <thead>' +
' <tr>' +
' <th class="col-md-6">Account name</th>' +
' </tr>' +
' </thead>' +
' <tbody><tr collection data="data" /></tbody>' +
' </table>' +
'</div>'
};
});
app.directive('collection', function() {
return {
restrict: "A",
replace: true,
scope: {
data: '=',
depth: '@'
},
template: '<member ng-repeat="member in data" member="member" depth="{{depth}}" />',
link: function (scope, element, attrs) {
scope.depth = parseInt(scope.depth || 0);
}
}
});
app.directive('member', function($compile) {
return {
restrict: "E",
replace: true,
scope: {
depth: '@',
member: '='
},
template: '<tr ng-class="{selected: member.selected}">' +
'<td>' +
' <span ng-show="depth > 0" style="width: {{depth * 16}}px; display: inline-block;"></span> {{member.name}}' +
'</td>' +
'</tr>',
link: function (scope, element, attrs) {
scope.depth = parseInt(scope.depth || 0);
if (angular.isArray(scope.member.children) && scope.member.children.length > 0) {
var el = angular.element('<tr collection data="member.children" depth="{{newDepth}}" />');
scope.depth = parseInt(scope.depth || 0);
scope.newDepth = scope.depth + 1;
$compile(el)(scope);
// Flatten hierarchy, by appending el to parent
element.parent().append(el);
}
}
}
});
Il problema è che, nella collezione aggiunto da link
metodo, depth
dal campo di applicazione genitore è allegato al newDepth
. Di conseguenza, depth
per i nodi di livello 3 ha valore depth="3 2 1 "
.
Come disabilitare l'ereditarietà di depth
?
Ho anche notato che quando cambio in false in collection
e member
, la profondità funziona come previsto, ma HTML non è valido.
Potrebbe fornire un plunker o violino per il vostro caso? –
@SpartakLalaj Eccovi: https://plnkr.co/edit/CE2z5WeU41H4qJQQ73B7?p=preview – Krzysztof
Ho rimosso l'attributo depth e l'ho dichiarato con il segno di uguale nella raccolta e sembra che i numeri siano corretti. Prova a vedere se questo è il risultato corretto! –