我正在使用角度6和角度材质6。在这里,我尝试使用面包屑创建多级菜单。我已经使用了正确的多级菜单,但是无法使用选定的面包屑导航菜单。当我单击所选的面包屑时,菜单将无法正确组织。
我的演示链接:stackblitz link here
答案 0 :(得分:3)
@hi Monir tuhin
您可以尝试此解决方案。
我已经在Stackblitz上创建了一个演示。
Component.ts
breadCrumb(menu, index) {
console.log('sub breadCrumb');
this.menuHeader.splice(index + 1, this.menuHeader.length - 1);
if (menu[index] && menu[index].items && menu[index].items.length) {
this.appitemsTravel = menu[index].items;
}
}
Component.html
<mat-toolbar color="primary" style="height: 45px; font-size: 16px; font-weight: bold; color: #E6E8EA">
<span><a mat-button (click)="breadCrumbMain()" style="color: white;">Main</a></span>
<span *ngFor="let m of menuHeader; let indx = index" style="color: white;">
<a mat-button (click)="breadCrumb(menuHeader, indx)" >{{m.label}}
<mat-icon fxFlex="10">{{m.icon}}</mat-icon></a>
</span>
</mat-toolbar>
答案 1 :(得分:0)
@Krishna Rathore非常感谢您的解决方案。 我只是改变了几件事:
这是分叉的stackblitz link。
我认为我应该在这里发布以给您功劳,并帮助随之而来的任何人。