嗨社區我有一個Plunker,我已經實現了這個流程:角4刷新節僅
更新Plunker:我解決,但頭組件被稱爲每次,我必須把我的頭組件中的每個HTML有沒有更好的方法來做到這一點?
- 登錄
- 國家的顯示列表(在上面的用戶信息)
- 點擊一下的國家和節目細節的一個(問題是在這裏)
- 回到列表
我只需要刷新國家/地區列表的一部分,但在我的plunker中,您可以看到整個頁面正在刷新,我想將用戶信息保留在頂部(靜態)。
我幾乎沒有經驗。 非常感謝!
@Component({
selector : 'login',
template: `
<input type="text" value="james">
<input type="password" value="123">
<button (click)="logIn()">Login</button>
`
})
class LoginComponent {
constructor(private route: ActivatedRoute,
private router: Router) { }
logIn() {
//LOGIN LOGIC
this.router.navigate(['/base']);
}
}
我已經在根組件標籤。把路由器插座沒有顯示國家列表。 – Diego