要获取Angular路由的每个片段,可以使用ActivatedRoute的url属性。以下是一个示例代码,演示如何获取每个路由片段:
import { Component } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-my-component',
template: `
Route Fragments
- {{ fragment }}
`,
})
export class MyComponent {
routeFragments: string[];
constructor(private route: ActivatedRoute) {
this.routeFragments = this.route.snapshot.url.map(segment => segment.path);
}
}
在上面的代码中,我们首先导入了ActivatedRoute类,并在组件的构造函数中注入了该类的实例。然后,我们使用routeFragments数组来存储路由的每个片段。
在构造函数中,我们使用route的snapshot属性来获取当前路由的快照,并使用map函数遍历快照中的每个片段。我们使用segment.path来获取每个片段的路径,并将其存储在routeFragments数组中。
最后,在组件的模板中,我们使用*ngFor指令来循环遍历routeFragments数组,并将每个片段显示在一个li元素中。
这样,我们就可以在组件中获取并显示每个路由片段了。