Spec-Zone.ru › Angular 2

HashLocationStrategy

Stable Class

Что делает

Использует хеш URL для хранения данных о местоположении приложения.

Обзор класса

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
}

Описание класса

HashLocationStrategy — это LocationStrategy, используемый для настройки сервиса Location с целью представления его состояния в фрагменте хеша URL браузера.

Например, если вы вызовете location.go('/foo'), URL браузера станет example.com#/foo.

Пример

import {HashLocationStrategy, Location, LocationStrategy} from '@angular/common';
import {Component} from '@angular/core';

@Component({
  selector: 'hash-location',
  providers: [Location, {provide: LocationStrategy, useClass: HashLocationStrategy}],
  template: `
    <h1>HashLocationStrategy</h1>
    Current URL is: <code>{{location.path()}}</code><br>
    Normalize: <code>/foo/bar/</code> is: <code>{{location.normalize('foo/bar')}}</code><br>
  `
})
export class HashLocationComponent {
  location: Location;
  constructor(location: Location) { this.location = location; }
}

Аннотации

@Injectable()

Конструктор

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

экспортировано из @angular/common/index, определено в @angular/common/src/location/hash_location_strategy.ts

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v2.angular.io/docs/ts/latest/api/common/index/HashLocationStrategy-class.html

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API