我使用@角/路由器角路由器選購PARAMS破壞/初始化組件
我的路線:
{
path: '',
component: MyComponent,
},
{
path: ':id',
component: MyComponent
}
}
有任何選項,兩個狀態(「」,「之間導航:ID 「)而不destory /初始化MyComponent
例如:
網址:空, 呼叫ngOnInit()
網址:/some_id
, 通話ngOnDestory()
,ngOnInit()
(破壞/建設爲MyComponent)
肯定。你想要做什麼'無參數'和'id = 1'一些價值應該如何表現。我的建議是使用兩個不同的組件。 – Aravind
我需要兩個選項相同的組件... – YairTawil