typescript 07. Les指令

Posted

tags:

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

import { Directive, ElementRef } from '@angular/core';

@Directive({
  selector: '[pkmnBorderCard]' 
})
export class BorderCardDirective {
	constructor(private el: ElementRef) {
		this.setBorder('#f5f5f5');
		this.setHeight(180);
	}

	private setBorder(color: string) {
		let border = 'solid 4px ' + color;
		this.el.nativeElement.style.border = border;
	}

	private setHeight(height: number) {
		this.el.nativeElement.style.height = height + 'px';
	}
}

以上是关于typescript 07. Les指令的主要内容,如果未能解决你的问题,请参考以下文章

typescript 09. Les Routes

typescript 05. Les Composants。

typescript 11. Les Services et l'injectiondedépendances。

LDS,LES,LFS,LGS,LSS指令

AngularJS TypeScript 指令链接函数

Typescript 在我的指令中找不到范围或属性