我已经使用了这个解决方案https://github.com/mswilson4040/ckangular,它解决了我的问题,即ckeditor没有工作角度。在这里,他们首先为编辑器创建html,然后在其中创建实例,然后调用ckedtor create function。现在我有一个案例,我有一个模态首先渲染html然后我需要创建ckeditor实例。我目前正在使用以下代码来实现此目的:
//where editor instance will be created.
<span *ngIf="generate">
{{generateEditors()}}//calling type script function to create a instance on above
.ts:
generateEditors() {
debugger;
this.ckEditor = new CkEditor();
this.ckEditor.create('purpose-editor');
this.generate = false;
}
这个函数的问题是它一次又一次地调用无限调用,我的应用程序会挂起。
Seconfly我已经安装了ng-onload包,但我不知道如何导入和使用它 //将创建编辑器实例。
在这两种情况下都能获得快速帮助。