我从Codecanyon购买了源代码。我想从菜单中隐藏或隐藏某些项目及其所有子项。根据图片(example menu),例如,隐藏项目“共享” ...因为项目消失了 请为初学者简单说明。已经,您也刚开始... 链接附件图片:http://s5.picofile.com/file/8362836676/aY741_1_.png
最诚挚的问候。
答案 0 :(得分:0)
这就是我的处理方式,希望对您有帮助。
<form [formGroup]="form" (ngSubmit)="submit()">
<mat-form-field>
<input matInput type="text" formControlName="name" placeholder="Name">
</mat-form-field>
<mat-form-field>
<mat-chip-list #chipList>
<mat-chip *ngFor="let cid of courseIds" (removed) = "...">
{{cid}}
</mat-chip>
<input matInput formControlName="courseIds"
[matChipInputFor]="chipList"
placeholder="Ids"
(matChipInputTokenEnd)="add($event)">
</mat-chip-list>
</mat-form-field>
....
<button type="submit">OK</button>
</form>