我正在寻找一种方法来接收当前服务器路径作为 Angular2 中的字符串,即
http://localhost:3000/my/dynamic/path
我如何获得:/ my / dynamic / path
答案 0 :(得分:1)
这应该是Angular方式
export class AppComponent {
constructor(private location:Location) {}
repoPath: string;
ngOnInit() {
this.repoPath = location.path();
}
}
答案 1 :(得分:0)
已经找到了:
export class AppComponent {
repoPath: string;
ngOnInit() {
this.repoPath = window.location.pathname;
}
}