ResolveStart

表示路由解析(Resolve)阶段的开始。该事件的触发时机将来可能会改变,因为它是试验性的。 在当前的迭代中,它将会在 resolve 阶段执行,而不管有没有东西要 resolve。 将来,这种行为可能会修改成只有当有东西要 resolve 时才执行。

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

  // 继承自 router/RouterEvent
  constructor(id: number, url: string)
  id: number
  url: string
}
    

构造函数

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

属性

属性说明
urlAfterRedirects: string 声明于构造函数中
state: RouterStateSnapshot 声明于构造函数中

方法

toString(): string
      
      toString(): string
    
参数

没有参数。

返回值

string