Angular 2
Заголовок страницы
Поиск…
Вступление
Как изменить название страницы
Синтаксис
-
setTitle(newTitle: string): void;
-
getTitle(): string;
изменение названия страницы
- Сначала нам нужно предоставить услугу «Название».
- Использование setTitle
import {Title} from "@angular/platform-browser";
@Component({
selector: 'app',
templateUrl: './app.component.html',
providers : [Title]
})
export class AppComponent implements {
constructor( private title: Title) {
this.title.setTitle('page title changed');
}
}
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow