Angular2路由器中的动态路径

时间:2016-02-25 15:23:52

标签: dynamic path angular router

我正在寻找一种方法来接收当前服务器路径作为 Angular2 中的字符串,即

http://localhost:3000/my/dynamic/path

我如何获得:/ my / dynamic / path

2 个答案:

答案 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;
    }
 }