Cookies concent notice

This site uses cookies from Google to deliver its services and to analyze traffic.
Learn more
Skip to main content
This site is no longer updated.Head to Angular.devHome
/

This is the archived documentation for Angular v17. Please visit angular.dev to see this page for the current version of Angular.

NavigationSkippedCode

A code for the NavigationSkipped event of the Router to indicate the reason a navigation was skipped.

      
      enum NavigationSkippedCode {
  IgnoredSameUrlNavigation
  IgnoredByUrlHandlingStrategy
}
    

Members

Member Description
IgnoredSameUrlNavigation

A navigation was skipped because the navigation URL was the same as the current Router URL.

IgnoredByUrlHandlingStrategy

A navigation was skipped because the configured UrlHandlingStrategy return false for both the current Router URL and the target of the navigation.

See also: