要获取多个PrimeNG编辑器的实例,可以使用ViewChild
装饰器来引用每个编辑器的实例。以下是一个示例:
首先,确保已经在NgModule
中导入了EditorModule
:
import {EditorModule} from 'primeng/editor';
然后,在组件类中使用ViewChild
装饰器来引用每个编辑器的实例。给每个编辑器添加一个模板引用变量:
在组件类中,使用ViewChild
装饰器来获取每个编辑器的实例:
import {Component, ViewChild} from '@angular/core';
import {Editor} from 'primeng/editor';
@Component({
selector: 'app-editor',
template: `
`
})
export class EditorComponent {
@ViewChild('editor1') editor1: Editor;
@ViewChild('editor2') editor2: Editor;
content1: string;
content2: string;
ngAfterViewInit() {
// 在这里可以访问编辑器的实例
console.log(this.editor1);
console.log(this.editor2);
}
}
现在,您可以通过this.editor1
和this.editor2
访问每个编辑器的实例,并对其进行操作。