UrlMatchResult

表示 URL 匹配的结果。

Represents the results of the URL matching.

查看"说明"...

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

说明

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

    consumed is an array of the consumed URL segments.

  • posParams 是位置参数的映射表。

    posParams is a map of positional parameters.