要在Angular中实现自定义结构性指令,可以按照以下步骤进行:
import { Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';
@Directive({
selector: '[appCustomDirective]'
})
export class CustomDirective {
constructor(private templateRef: TemplateRef<any>, private viewContainer: ViewContainerRef) { }
@Input() set appCustomDirective(condition: boolean) {
if (condition) {
this.viewContainer.createEmbeddedView(this.templateRef);
} else {
this.viewContainer.clear();
}
}
}
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CustomDirective } from './custom.directive';
@NgModule({
declarations: [
CustomDirective
],
imports: [
CommonModule
],
exports: [
CustomDirective
]
})
export class SharedModule { }
<div *appCustomDirective="condition">
<!-- Your content here -->
</div>
在上面的代码中,当condition
为true时,<div>
元素会被动态创建并显示在模板中,否则会被清除。这样就可以实现自定义结构性指令在Angular中的使用。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。