Cookies concent notice

This site uses cookies from Google to deliver its services and to analyze traffic.
Learn more
Skip to main content
Say hello to Angular's future home!Check out Angular.devHome
/

defaultUrlMatcher

Matches the route configuration (route) against the actual URL (segments).

See more...

      
      defaultUrlMatcher(segments: UrlSegment[], segmentGroup: UrlSegmentGroup, route: Route): UrlMatchResult | null
    
Parameters
segments UrlSegment[]

The remaining unmatched segments in the current navigation

segmentGroup UrlSegmentGroup

The current segment group being matched

route Route

The Route to match against.

Returns

UrlMatchResult | null: The resulting match information or null if the route should not match.

See also

Description

When no matcher is defined on a Route, this is the matcher used by the Router by default.