typescript Angular2标题实用程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript Angular2标题实用程序相关的知识,希望对你有一定的参考价值。

import {Title} from "@angular/platform-browser";
import {Injectable} from "@angular/core";

@Injectable()
export class TitleService extends Title {

  private prefix: string = '';
  private suffix: string = '';

  setTitle(newTitle: string) {
    super.setTitle(`${this.prefix} ${newTitle} ${this.suffix}`.trim());
  }

  setPrefix(newPrefix: string) {
    this.prefix = newPrefix;
  }

  setSuffix(newSuffix: string) {
    this.suffix = newSuffix;
  }
}

以上是关于typescript Angular2标题实用程序的主要内容,如果未能解决你的问题,请参考以下文章