Help Angular by taking a 1 minute survey!Go to surveyHome

UrlSerializer

Serializes and deserializes a URL string into a URL tree.

See more...

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

Description

The url serialization strategy is customizable. You can make all URLs case insensitive by providing a custom UrlSerializer.

See DefaultUrlSerializer for an example of a URL serializer.

Methods

Parse a url into a UrlTree

abstract parse(url: string): UrlTree
      
      abstract parse(url: string): UrlTree
    
Parameters
url string
Returns

UrlTree

Converts a UrlTree into a url

abstract serialize(tree: UrlTree): string
      
      abstract serialize(tree: UrlTree): string
    
Parameters
tree UrlTree
Returns

string