Angular 2
Namn på sidan
Sök…
Introduktion
Hur kan du ändra sidans titel
Syntax
-
setTitle(newTitle: string): void;
-
getTitle(): string;
ändra sidtitel
- Först måste vi tillhandahålla titeltjänst.
- 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