サーチ…


前書き

どのようにしてページのタイトルを変更できますか

構文

  • setTitle(newTitle: string): void;
  • getTitle(): string;

ページのタイトルを変更する

  1. まずタイトルサービスを提供する必要があります。
  2. 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