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


TypeScript Title.setTitle方法代码示例

本文整理汇总了TypeScript中angular2/platform/browser.Title.setTitle方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Title.setTitle方法的具体用法?TypeScript Title.setTitle怎么用?TypeScript Title.setTitle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在angular2/platform/browser.Title的用法示例。


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

示例1: ngOnInit

  public ngOnInit () {
    if (this._session.user) {
      return this._router.navigate(['Tracker', { username: this._session.user.username }]);
    }

    this._title.setTitle('Pokédex Tracker | Track the Progress of Your Living Dex Completion');
  }
开发者ID:ashcoding,项目名称:pokedextracker.com,代码行数:7,代码来源:home.ts

示例2: constructor

	public constructor(private title: Title,
                       private identity: Identity,
                       private element: ElementRef,
                       private bus: Bus) {
		title.setTitle('Lucca chat');
        bus.Publish(new MessageBus(Bus.CONNECT_TOPIC, new ConnectionMessage(identity).Serialize()));
 	}
开发者ID:sGeeK44,项目名称:LuccaChat,代码行数:7,代码来源:lucca-chat.ts

示例3: constructor

	constructor(
		private applicationRef: ApplicationRef,
		private blogServer:BlogServer,
		private router:Router,
		private titleService:Title
		){
		this.titleService.setTitle('Blog');
	}
开发者ID:Mapleiny,项目名称:FLCTCollection,代码行数:8,代码来源:listView.ts

示例4: constructor

    constructor(
        private loader: DynamicComponentLoader,
        private vcRef: ViewContainerRef,  // ViewContainerRef,
        title: Title

    ) {
        title.setTitle('自定义 title');
    }
开发者ID:RandyBoy,项目名称:meteor-angular2-starter,代码行数:8,代码来源:parent.ts

示例5: constructor

	constructor(public title: Title) {
		this.title.setTitle("Home page");

		this.observable = new Observable(observable => {
			var value = 0;
			var timeInterval = setInterval(() => {
				value++;
				observable.next(value);
			}, 1000);

			return () => clearInterval(timeInterval);
		});
	}
开发者ID:schippie,项目名称:NG2-Stream-Pipe,代码行数:13,代码来源:home.ts

示例6: routerOnActivate

 routerOnActivate() {
     this._title.setTitle('Register - ColonThree')
 }
开发者ID:matheusmariano,项目名称:colonthree-webapp,代码行数:3,代码来源:register.component.ts

示例7:

		this._router.subscribe((url) => 
		{ //Fires on every URL change
			this._title.setTitle(this.getCurrentTitle());
		});
开发者ID:SlothHub,项目名称:Annotations,代码行数:4,代码来源:app.component.ts

示例8: constructor

 constructor(titleService:Title){
   titleService.setTitle("Omega Security Syndicate - SRP");
   if (localStorage && localStorage.jwt) this.jwt = localStorage.jwt;
 }
开发者ID:abcdefg12346,项目名称:oss-srp,代码行数:4,代码来源:main.ts

示例9: ngOnInit

 public ngOnInit () {
   this._title.setTitle('404 Not Found | Pokédex Tracker');
 }
开发者ID:ashcoding,项目名称:pokedextracker.com,代码行数:3,代码来源:not-found.ts

示例10: it

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


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