HashLocationStrategy

HashLocationStrategy

Stable Class

What it does

Use URL hash for storing application location data.

Class Overview

class HashLocationStrategy extends LocationStrategy {
  constructor(_platformLocation: PlatformLocation, _baseHref?: string)
  
  
  onPopState(fn: LocationChangeListener) : void
  getBaseHref() : string
  path(includeHash?: boolean) : string
  prepareExternalUrl(internal: string) : string
  pushState(state: any, title: string, path: string, queryParams: string)
  replaceState(state: any, title: string, path: string, queryParams: string)
  forward() : void
  back() : void
}