Angular 4 routing - redirectTo with skipLocationChange

时间:2017-05-22 09:46:30

标签: angular routing

我有一些路由模块,其主路径设置为:/canvas

const canvasRoutes: Routes = [
    {
        path: "canvas", component: CanvasComponent
    }
];

@NgModule({
    imports: [
        RouterModule.forChild(canvasRoutes)
    ],
    exports: [
        RouterModule
    ],
    declarations: [],
    providers: []
})
export class CanvasRoutingModule {
}

在应用程序路由模块中,我希望每次访问根路径时都将重定向路径设置为/canvas。目前配置如下:

const appRoutes: Routes = [
    {
        path: "", redirectTo: "/canvas", pathMatch: "full"
    }
];

@NgModule({
    imports: [
        RouterModule.forRoot(appRoutes)
    ],
    exports: [
        RouterModule
    ],
    declarations: [],
    providers: []
})
export class AppRoutingModule {

}

它工作正常,http://localhost:4201的访问权限被重定向到http://localhost:4201/canvas

但是,我不希望在重定向后将/canvas路径附加到URL。怎么能实现这一目标?举例来说,我可以将skipLocationChange参数应用于此重定向,因为我将其与router.navigate(... {skipLocationChange: true})一起使用?

2 个答案:

答案 0 :(得分:5)

我已通过订阅router.events中的AppComponent并手动导航到canvas路径并将skipLocationChange设置为true来解决该问题。

@Component({
    ...
})
export class AppComponent {
    constructor(private router: Router) {
        this.router.events.subscribe(routerEvent => {
            if (routerEvent instanceof NavigationStart) {
                if (routerEvent.url == "/") {
                    this.router.navigate(["canvas"], {skipLocationChange: true})
                }
            }
        });
    }
}

答案 1 :(得分:1)

有点晚了,但也许它很有帮助:

我遇到了同样的问题并设法通过在声明Router.forRoot时添加ExtraOptions来解决它

像这样:

imports: [ RouterModule.forRoot(routes, { initialNavigation : false }) ],

这样就可以避免将/ canvas设置为URL的初始导航。

之后,您可以继续使用skipLocationChange。

希望这有帮助!