在Angular 9中,可以使用组件来创建自定义指令。以下是一个示例,展示如何将组件用作指令。
首先,创建一个新的组件,并将其用作指令。在这个例子中,我们将创建一个简单的高亮指令,该指令将添加一个背景色。
highlight.directive.ts
import { Directive, ElementRef } from '@angular/core';
@Directive({
selector: '[appHighlight]'
})
export class HighlightDirective {
constructor(private el: ElementRef) {
this.el.nativeElement.style.backgroundColor = 'yellow';
}
}
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { HighlightDirective } from './highlight.directive';
@NgModule({
declarations: [
AppComponent,
HighlightDirective
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
app.component.html
This text will be highlighted.
在上述示例中,我们创建了一个名为 HighlightDirective
的指令组件,并通过 @Directive
装饰器将其标记为指令。在构造函数中,我们使用 ElementRef
来访问指令所在的元素,并设置其背景色为黄色。然后,在模块中声明和导入该指令,并在模板中使用它。
运行应用程序后,可以看到带有背景色的文本。这就是如何在Angular 9中将组件用作指令的示例。