UrlMatchResult

Represents the results of the URL matching.

表示 URL 匹配的结果。

type UrlMatchResult = { consumed: UrlSegment[]; posParams?: { [name: string]: UrlSegment; }; };

说明

  • consumed is an array of the consumed URL segments.

    consumed 是一个已消费的 URL 区段的数组。

  • posParams is a map of positional parameters.

    posParams 是位置参数的映射表。