linkResolveStart
npm Package | @angular/router |
---|---|
Module | import { ResolveStart } from '@angular/router'; |
Source | router/src/events.ts |
Represents the start of the Resolve phase of routing. The timing of this event may change, thus it's experimental. In the current iteration it will run in the "resolve" phase whether there's things to resolve or not. In the future this behavior may change to only run when there are things to be resolved.
linkOverview
class ResolveStart extends RouterEvent {
constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)
urlAfterRedirects: string
state: RouterStateSnapshot
toString(): string
// inherited from router/RouterEvent
id: number
url: string
}
linkConstructor
constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)