gpt4 book ai didi

Angular 2路由器导航功能不起作用

转载 作者:太空狗 更新时间:2023-10-29 17:24:28 27 4
gpt4 key购买 nike

我的 AppComponent 中的路由器功能“导航”有问题:

@RouteConfig([ 
{path:'/home', name: 'Home', component: HomeComponent, useAsDefault: true, data: {user: null}},
{path:'/dashboard', name: 'Dashboard', component: DashboardComponent}
])

在我的 HomeComponent 中,我正在尝试这样做:

...
constructor(private _router:Router){}

changePage(){
this._router.parent.navigate(["Dashboard"]); // It fails
}
...

它没有将我发送到“/dashboard”,这正常吗?

最佳答案

终于找到了!它正在与:

changePage() {
this._router.navigate(["../Dashboard"]);
}

谢谢你帮助我

关于Angular 2路由器导航功能不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36014483/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com