当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript platform-browser.Title类代码示例

本文整理汇总了TypeScript中@angular/platform-browser.Title的典型用法代码示例。如果您正苦于以下问题:TypeScript Title类的具体用法?TypeScript Title怎么用?TypeScript Title使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Title类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: setTitle

 setTitle(title: string): void {
   this.titleService.setTitle(title);
 }
开发者ID:stevebrush,项目名称:giftdibs,代码行数:3,代码来源:app.component.ts

示例2: constructor

 constructor(private projectService: ProjectService, private alertSerice: AlertService, title: Title) {
   title.setTitle('Georg Ludewig - Software Engineer - Projects');
 }
开发者ID:fischermatte,项目名称:geolud,代码行数:3,代码来源:projects.component.ts

示例3:

 this.t.getLangInitializedEmitter().subscribe((value) => {
     this.titleService.setTitle(this.t._.page.about.title + ' | TidyCards');
 })
开发者ID:OlivierCoue,项目名称:invow,代码行数:3,代码来源:tc-about.component.ts

示例4: it

 it('should reset title to empty string if title not provided', () => {
   titleService.setTitle(null);
   expect(getDOM().getTitle(doc)).toEqual('');
 });
开发者ID:JohnnyQQQQ,项目名称:angular,代码行数:4,代码来源:title_spec.ts

示例5: ngOnInit

 ngOnInit()
 {
       this.titleService.setTitle("F.C Uffheim - Partenaires");
 }
开发者ID:maxcl10,项目名称:FootballWebSite,代码行数:4,代码来源:sponsor.component.ts

示例6: setTitle

 public setTitle(newTitle: string) {
   this.titleService.setTitle(newTitle);
 }
开发者ID:TypeScriptUserGroupDE,项目名称:homepage,代码行数:3,代码来源:seo.service.ts

示例7: expect

 () => { expect(titleService.getTitle()).toEqual(initialTitle); });
开发者ID:JohnnyQQQQ,项目名称:angular,代码行数:1,代码来源:title_spec.ts

示例8: ngOnInit

 ngOnInit() {
   this.title.setTitle('Products');
   this.meta.updateTag({ content: 'Browse products and product categories' }, "name='description'");
 }
开发者ID:mogeta,项目名称:firebase-cms,代码行数:4,代码来源:product-categories.component.ts

示例9: ngOnInit

 public ngOnInit(): void {
     this.titleService.setTitle(this.title);
 }
开发者ID:npakhomova,项目名称:ImEnginreUIDemo,代码行数:3,代码来源:app.component.ts

示例10: ngOnInit

 ngOnInit(): void {
   this.titleService.setTitle('Pastes List');
   this.route.params
     .switchMap((params: Params) => this.pastesService.getPasteById(params['hashId']))
     .subscribe((paste: Paste) => this.paste = paste);
 }
开发者ID:DoubleCiti,项目名称:daimaduan-app,代码行数:6,代码来源:paste-view-page.component.ts


注:本文中的@angular/platform-browser.Title类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。