수색…


소개

페이지의 제목을 어떻게 바꿀 수 있습니까?

통사론

  • 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