我无法将路由参数检索为空。我正在使用角度7。请在下面找到代码
标头组件 ts 文件
import {Router, ActivatedRoute} from '@angular/router';
constructor(private httpService: HttpClient, private router: Router, private activatedRoute: ActivatedRoute) {
this.getNewsSelectedFromRouteParam();
}
getNewsSelectedFromRouteParam() {
alert();
let id = this.activatedRoute.snapshot.paramMap.get('typeId');
alert(id);
}
getNewsByCountry(newsTypeSelected: any) {
this.router.navigate(['/news',newsTypeSelected]);
this.getNewsSelectedFromRouteParam();
}
页眉网页
<div class=" dropdown-toggle" data-toggle="dropdown">
XXX
</div>
<div class="dropdown-menu">
<div *ngFor="let cr of country" class="dropdown-item"
(click)="getNewsByCountry(cr.value)" >{{cr.name}}</div>
</div>
应用路由 TS 文件
const routes: Routes = [
{ path: 'news/:typeId', component: XxxComponent },
{ path: '**', component: XxxComponent }
];
方法可以访问路由参数。
- 静态(页面加载时一次)
- 动态(如果在应用程序中更改参数而不通过浏览器重新加载页面,则进行更新)
您可以在此处获得更多参考:https://angular.io/api/router/ActivatedRouteSnapshot
有关实现,请参阅以下代码片段:
let id = this.activatedRoute.snapshot.params.typeId; // any param name after "params"
或
this.activatedRoute.params.subscribe((params) => {
let id = params.get('typeId');
});
确保在初始化组件时使用上述代码,即在ngOnInit()中或之后。
我正在尝试在"HeaderComponent ts"中获取该参数,它应该从"XxxComponent"调用。我在 XxxComponent ts 文件中添加了路由参数代码,现在按预期工作。我能够获得路由参数。
你也可以试试
let id = this.activatedRoute.snapshot.queryParams.id
获取所有路由共享的查询参数
你把getNewsByCountry叫进去(点击),可能cr.value是空的,cr.value是什么?是身份证吗?