这可能是因为缺少占位符或参数。尝试使用以下代码示例:
在路由模块定义中(例如,app-routing.module.ts):
const routes: Routes = [
{ path: 'users/:id', component: UserComponent },
...
];
在组件中:
import { ActivatedRoute } from '@angular/router';
constructor(private route: ActivatedRoute) {}
ngOnInit() {
this.route.paramMap.subscribe(params => {
console.log(params.get('id')); // display user id in console
// or do something else with the id
});
}
此代码示例将在浏览器地址栏中显示“/users/123”,并在控制台中显示用户ID(在这种情况下为123)。您可以根据需要使用此值进行数据获取或其他操作。