0

我是新的角度2開發。我添加了一個組件,在這個組件中,我有一些其他的子組件。在以下方面,我的文件夾結構:子頁面中的角度2路由問題

parentComponent 
    -child1Component 
    -child2Component 
    -child3Component 

parentComponent.html我加入<router-outlet></router-outlet>

我從child1到孩子2導航,和兒童2 child3。我也可以移回來,反之亦然。向後移動我正在使用this._location.back();

當我使用後退按鈕向後移動。它顯示當前路線中的上一頁組件。

例如:

當我從child2使用後退按鈕移動到child1。 child1路徑仍然在child1頁面中顯示子html部分。

對於路由我使用的是這樣的:

{ path: "parent", component: parentComponent, 
    children: [ 
    { path: "child1", component: child1Component }, 
    { path: "child2", component: child2Component }, 
    { path: "child3", component: child3Component} 
    ], 
    data: { breadcrumb: 'Parent' } 
} 

我不知道爲什麼它的發生。請幫助!

版本信息

@angular/cli: 1.2.6 
node: 6.10.0 
os: win32 x64 
@angular/animations: 4.3.2 
@angular/common: 4.3.2 
@angular/compiler: 4.3.2 
@angular/core: 4.3.2 
@angular/forms: 4.3.2 
@angular/http: 4.3.2 
@angular/platform-browser: 4.3.2 
@angular/platform-browser-dynamic: 4.3.2 
@angular/router: 4.3.2 
@angular/cli: 1.2.6 
@angular/compiler-cli: 4.3.2 
@angular/language-service: 4.3.2 
+0

請你提供一個工作的例子嗎? –

回答

0

它與下面。

在Index.html頁面和ParentComponent的html頁面添加路由器插座。

--routes.ts

{ 
    path:'', 
    redirectTo:'index.html', 
    pathMatch:'full' 
}, 
{ 
    path:'parent', 
    component:ParentComponent, 
    children:[ 
     { 
      path:"child1", 
      component:Child1Component 
     }, 
     { 
      path:"child2", 
      component:Child2Component 
     }, 
     { 
      path:"child3", 
      component:Child3Component 
     } 
    ] 

} 

--Parent.component.html

<input type="button" (click)="goNext()" value="Next"> <router-outlet></router-outlet> 

--parent.component.ts

goNext() 
    { 
    this.router.navigateByUrl("/parent/child1") 
    } 

child1.html

<input type="button" (click)="goNext()" value="Next"><input type="button" (click)="goBack()" value="Back" /> 

chil1.ts

goNext() 
    { 
    this.router.navigateByUrl("/parent/child2") 
    } 

child2.html

<input type="button" (click)="goNext()" value="Next"><input type="button" (click)="goBack()" value="Back" /> 

child2.ts

goNext() 
    { 
    this.router.navigateByUrl("/parent/child3") 
    } 

child3.html

<input type="button" (click)="goBack()" value="Back" /> 
+0

我在我的代碼中使用相同的結構只有一個區別是我從我的組件路由而不是[routerLink] – user3541485

+0

您可以發佈代碼嗎? – RRForUI

+0

用組件導航編輯我的答案 – RRForUI