DefaultUrlSerializer

class

npm Package @angular/router
Module import { DefaultUrlSerializer } from '@angular/router';
Source router/src/url_tree.ts

A default implementation of the UrlSerializer.

Overview

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

Description

Example URLs:

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

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.

Members

parse(url: string): UrlTree

Parses a url into a UrlTree

serialize(tree: UrlTree): string

Converts a UrlTree into a url

© 2010–2018 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v5.angular.io/api/router/DefaultUrlSerializer