class
Store contextual information about the children (= nested) RouterOutlet
class ChildrenOutletContexts { onChildOutletCreated(childName: string, outlet: RouterOutlet): void onChildOutletDestroyed(childName: string): void onOutletDeactivated(): Map<string, OutletContext> onOutletReAttached(contexts: Map<string, OutletContext>) getOrCreateContext(childName: string): OutletContext getContext(childName: string): OutletContext | null }
onChildOutletCreated() | ||||||
---|---|---|---|---|---|---|
Called when a | ||||||
|
childName | string | |
outlet | RouterOutlet |
void
onChildOutletDestroyed() | |||
---|---|---|---|
Called when a | |||
|
childName | string |
void
onOutletDeactivated() |
---|
Called when the corresponding route is deactivated during navigation. Because the component get destroyed, all children outlet are destroyed. |
|
onOutletReAttached() | |||
---|---|---|---|
|
contexts | Map |
getOrCreateContext() | |||
---|---|---|---|
|
childName | string |
getContext() | |||
---|---|---|---|
|
childName | string |
OutletContext | null
© 2010–2021 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v11.angular.io/api/router/ChildrenOutletContexts