我使用的是angular 5.0.3,我想用一堆查询参数来启动我的应用程序,比如/app?param1=hallo¶m2=123
。在Angular 2中如何从url中获取查询参数?中给出的每个技巧对我都不适用。
有什么想法如何获得查询参数工作?
private getQueryParameter(key: string): string {
const parameters = new URLSearchParams(window.location.search);
return parameters.get(key);
}
这个私有函数帮助我获取参数,但我认为在新的Angular环境中这不是正确的方式。
< p >(更新:) 我的主应用程序看起来像@Component({...})
export class AppComponent implements OnInit {
constructor(private route: ActivatedRoute) {}
ngOnInit(): void {
// would like to get query parameters here...
// this.route...
}
}