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