文档:https ://material.angular.io/components/tree/overview#nested-tree
这与我想做的完全一样,但我需要一个节点的父节点。如何在模板上获得它?
我正在考虑这样的事情:
<li class="mat-tree-node" (click)="smthingFn(node)">
<button mat-icon-button disabled></button>
{{node.filename}}: {{node.type}}
</li>
smthingFn(node):void {
console.log(node.parent.filename);
}