13得票6回答
如何进行CKEditor 5图片上传?

ClassicEditor .create( editorElement, { ckfinder: { uploadUrl: 'my_server_url' } } ) .then( ... ) .catc...

13得票2回答
监听CKEditor 5中内容变化时触发的事件

我如何在 ckeditor5 中监听 "input" 事件? 我想能够像这样使用 Observables: Observable.fromEvent(this.editor, "input").debounceTime(250).subscribe(() => {}); 到目前为止,我...

13得票2回答
在change()中停止操作

在model.document.on('change')中,有没有一种方法可以停止和删除操作? 我用以下代码监听变化:model.document.on('change',(eventInfo,batch) => { // My code here. } 就目前而言,它运行良好,我可以...

10得票2回答
CKEditor 5 纯文本粘贴

有没有一种选项可以始终将剪贴板中的内容作为纯文本粘贴? 我尝试了这种方法,但并没有起作用: $(document).ready(function () { ClassicEditor.create(document.querySelector('#text'), { ...

10得票1回答
从CKEditor 5获取XML

如何将 ckeditor 的输出转换为 XML 而不是 HTML? 我以为只需要使用editor.data.processor=new XmlDataProcessor();就可以了,但这似乎仅适用于当调用editor.setData()时编辑器要求 XML 的输入,但editor.getD...

10得票2回答
CKEditor 5链接:设置链接的默认目标或编辑目标

在 CKEditor 5 中,我没有看到链接对话框中用于目标属性的字段。 如何添加这样的字段?或将 target=_blank 设置为默认值。 谢谢

10得票2回答
VueJS CKeditor5 上传图片

在Vuejs中使用CKeditor5上传图像遇到问题。 首先尝试简单上传适配器,但是出现以下错误: 原因:CKEditorError:ckeditor-duplicated-modules:有一些CKEditor 5模块重复。阅读更多信息:https://ckeditor.com/doc...

10得票6回答
ckeditor5-angular中的图像上传问题:未定义上传适配器。

这个问题可能已经有答案,但都不是针对Angular的。 CKEditor 5和图片按钮 如何在CKEditor 5中启用图像上传支持? 将图片插入到CKeditor 我正在使用Angular 5,并且遵循此文档来实现ckeditor5-angular。 但是我在上传图像时遇到了问题...

10得票2回答
CKEDITOR5 - Angular8:TypeError:this.editor.create不是一个函数。

我正在尝试将CKEDITOR 5集成到我的Angular 8项目中。我已创建了自定义超级构建,包括额外的插件和ClassicEditor以及InlineEditor(使用此指南:https://ckeditor.com/docs/ckeditor5/latest/builds/guides/i...

9得票1回答
如何设置CKEditor 5的高度

使用CKeditor Angular组件如何设置编辑器高度? 根据文档,可以通过将编辑器样式设置为以下内容来完成: min-height: 500px !important; 但是它不起作用!