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.
方法
将网址解析为 Parses a url into a |
将 Converts a |