作者:鼠宝宝-fen | 来源:互联网 | 2023-01-17 18:13
我有一个基本的清晰度角度模板,在sidenav中搜索.当我在移动设备上的sidenav中单击"查找"按钮时,sidenav不会消失.我如何使用角度关闭sidenav?
1> Eudes..:
最直接的解决方案是为您提供NavLevelDirective
sidenav实例的引用@ViewChild
及其所有close()
方法.
例如,在模板中添加引用变量:
然后使用以下命令在应用程序的组件中访问它:
@ViewChild("mySidenav", {read: NavLevelDirective}) sidenav: NavLevelDirective;
并sidenav.close()
在用户点击"查找"按钮时调用.