作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个组件,需要将您的 TemplateRef
传递给一个指令,该指令将使用 createEmbeddedView
方法在模态中复制该组件。
我试过了,但没有成功。
<template let-ref>
<my-component [myDirective]="ref"></my-component>
</template>
我该怎么做?
最佳答案
在模板中创建一个 ng-template 级别的变量:
<ng-template #templateref>
<div>Your template content</div>
</ng-template>
在与@ViewChild
一起使用的组件中,它将在OnInit
可用。
@Component({
selector: 'my-component',
templateUrl: 'my-component.html'
})
export class MyComponent implements OnInit {
@ViewChild('templateref') public templateref: TemplateRef<any>;
ngOnInit() {
console.log(this.templateref);
}
}
可能 ViewChild
声明可以简化,我还没有测试过。
关于angular - 如何在angular2中获取组件的TemplateRef?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41880420/
我是一名优秀的程序员,十分优秀!