点击有角的点击后如何打印标题和字幕?

时间:2018-08-22 07:09:20

标签: angular title sublist

我用角cf here做菜单和子菜单,但现在我想将这些标题打印在另一个纸牌部分(单击它们之后),如下所示: 如果我点击1.1菜单:

  
      
  • 1
  •   
  • 1.1
  •   
  • 一些文字
  •   

...如果我单击2菜单:

  
      
  • 2
  •   
  • 其他一些文字。
  •   

我尝试过

(click)="selectedStep = step;selectedsubStep = substep" 

ng-model="substep"

进入* ngFor循环但没有成功,请怎么做? 预先感谢

1 个答案:

答案 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>