我用角cf here做菜单和子菜单,但现在我想将这些标题打印在另一个纸牌部分(单击它们之后),如下所示: 如果我点击1.1菜单:
- 1
- 1.1
- 一些文字
...如果我单击2菜单:
- 2
- 其他一些文字。
我尝试过
(click)="selectedStep = step;selectedsubStep = substep"
或
ng-model="substep"
进入* ngFor循环但没有成功,请怎么做? 预先感谢
答案 0 :(得分:0)
尝试此操作,您可以将h4更改为div其他标头级别
<mat-list >
<ng-container *ngFor="let item of items">
<h4>{{item.name}}</h4>
<mat-list-item *ngFor="let subItem of item.subItems">
{{ subItem.name }}
</mat-list-item>
</ng-container>
</mat-list>