在当前路由(使用 ActivatedRoute 或 Router)中获取我的 id 值的最佳方法是什么?并解释原因:)
n°1
constructor(private route: ActivatedRoute) {}
ngOnInit() {
this.id = this.route.snapshot.params['id']
}
n°2
constructor(private router: Router) {}
ngOnInit() {
this.id = this.router.url.includes('id')
}