填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

DefaultUrlSerializer

UrlSerializer 的默认实现。

A default implementation of the UrlSerializer.

查看"说明"...

      
      class DefaultUrlSerializer implements UrlSerializer {
  parse(url: string): UrlTree
  serialize(tree: UrlTree): string
}
    

说明

范例网址:

Example URLs:

      
      /inbox/33(popup:compose)
/inbox/33;open=true/messages/44
    

DefaultUrlSerializer 使用圆括号序列化辅助段(例如,popup:compose),使用冒号语法指定出口,并使用';parameter=value' 语法(例如 open=true)来指定路由的特有参数。

DefaultUrlSerializer uses parentheses to serialize secondary segments (e.g., popup:compose), the colon syntax to specify the outlet, and the ';parameter=value' syntax (e.g., open=true) to specify route specific parameters.

方法

将网址解析为 UrlTree

Parses a url into a UrlTree

      
      parse(url: string): UrlTree
    
参数
url string
返回值

UrlTree

UrlTree 转换为 url

Converts a UrlTree into a url

      
      serialize(tree: UrlTree): string
    
参数
tree UrlTree
返回值

string