Sök…


Introduktion

Hur kan du ändra sidans titel

Syntax

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

ändra sidtitel

  1. Först måste vi tillhandahålla titeltjänst.
  2. Använda 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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow