我有一个组件,我用它来显示一个代码块,它在组件
中被转换<gs-code> console.log("Asd")</gs-code>
该组件看起来像这样
code.component.ts
@Component({
selector: 'gs-code',
providers: [],
viewProviders: [],
templateUrl: './code.component.html',
styleUrls: ['./code.component.less']
})
export class GsCodeComponent {
@Input() lang: string;
@Input() currentLang: string;
@ContentChild('content') content;
copied(event) {
console.log(event);
}
ngAfterContentInit() {
console.log(this.content, "content");
}
}
code.component.html
<pre class="prettyprint">
<ng-content #content></ng-content>
</pre>
<button class="btn btn-sm" title="Copy to clipboard" (click)="copied(content.innerHtml)"><i class="fa fa-clipboard"></i></button>
如何在组件中获取已转换的文本?
我尝试使用contentChild
和#content
作为<ng-content #content></ng-content>
。但这些都没有奏效。
答案 0 :(得分:4)
永远不会将<ng-content>
元素添加到DOM本身,因此添加模板变量并查询它并不起作用。
您可以使用其他元素包装<ng-content>
并在其中添加模板变量,并使用@ViewChild()
查询此元素。
然后你可以得到包装元素的innerHTML
@Component({
selector: 'item',
template: '<div #wrapper><ng-content></ng-content></div>'})
class Item implements AfterContentInit {
@ViewChild('wrapper') wrapper:ElementRef;
@Input() type:string = "type-goes-here";
ngAfterContentInit() {
console.log(this.wrapper.nativeElement.innerHTML); // or `wrapper.text`
}
}