Holen Sie sich Daten von URL in Angular
ngOnInit() {
// first way
this.userType = this.route.snapshot.queryParamMap.get("userType");
this.list = this.route.snapshot.queryParamMap.get("list");
// second way
this.route.queryParamMap.subscribe(queryParams => {
this.userType = queryParams.get("userType");
this.list = queryParams.get("list");
})
}
Nickton