ResolveStart

class

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.

class ResolveStart extends RouterEvent {
  constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)
  urlAfterRedirects: string
  state: RouterStateSnapshot
  toString(): string

  // inherited from router/RouterEvent
  constructor(id: number, url: string)
  id: number
  url: string
}

Constructor

constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)

Parameters

id

Type: number.

url

Type: string.

urlAfterRedirects

Type: string.

state

Type: RouterStateSnapshot.

Properties

Property Description
urlAfterRedirects: string Declared in constructor.
state: RouterStateSnapshot Declared in constructor.

Methods

toString(): string

Parameters

There are no parameters.

Returns

string

© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v6.angular.io/api/router/ResolveStart