我有一个使用Typescript在Angular 13中编写的应用程序。
我想用get url参数隐藏项目,如果它不存在就设置为true。
export class AppComponent {
menu: boolean = true;
constructor(private oauthService: InitialAuthService, private userRoleService: UserRoleService, private route: ActivatedRoute,) {
}
ngOnInit(): void {
this.route.queryParams
.subscribe((params: any) => {
this.menu = !!params["menu"] ? params["menu"] : true
}
);
this.menu = this.route.snapshot.queryParams['menu'];
我只是想缓存HTML元素后面的参数在URL中获得.
例如
http://localhost:4200/index?menu=false // hide menu
http://localhost:4200/index?menu=true // show menu
http://localhost:4200/index // show menu
超文本标记语言侧
<div *ngIf="menu">...</div>
1条答案
按热度按时间eh57zj3b1#
试试这个:
在模板中