我尝试为移动用法做同样的事情,而角团队在此示例上做了同样的事情。
所以我创建了我的组件,这样:
<app-component-0></app-component-0>
<div class="d-lg-none">
<button mat-icon-button (click)="snav.toggle()">
<mat-icon>menu</mat-icon>
</button>
<mat-sidenav-container class="sidenav-container">
<mat-sidenav #snav mode="over">
<app-menu-tree>
</app-menu-tree>
</mat-sidenav>
<mat-sidenav-content>
<router-outlet></router-outlet>
</mat-sidenav-content>
</mat-sidenav-container>
</div>
<app-component-1-desktop class="d-none d-lg-flex flex-column"></app-component-1-desktop>
因此,呼叫Sidenav的切换动作的按钮在Mat-Sidenav-container外面,就像在Stackblitz上的示例一样...但是,当我单击按钮时,我会有以下错误:
无法读取未定义
的属性'切换'
,因此按钮无法打开Sidenav ...
有人想解决这个问题吗?
(对不起,我的英语不是我的母语)
使用opened
输入。API:https://material.angular.io/components/sidenav/api
模板:
<button mat-icon-button (click)="opened = !opened">
<mat-icon>menu</mat-icon>
</button>
<mat-sidenav-container class="example-container">
<mat-sidenav #sidenav mode="over" [(opened)]="opened">
<app-menu-tree></app-menu-tree>
</mat-sidenav>
<mat-sidenav-content>
<router-outlet></router-outlet>
</mat-sidenav-content>
</mat-sidenav-container>
记住要定义组件中的opened
属性。