如何获取HTML格式ckeditor5?

时间:2018-06-21 03:08:22

标签: ckeditor5

我想获取由Editer5编写的内容并提交保存,但只能获取文本信息,而无法获取图片的内容。 this is my code

this is my editor

this is my edit content

in editor html

but has no data

1 个答案:

答案 0 :(得分:1)

您将创建的编辑器实例分配给变量,然后使用getData function。您可以在创建编辑器时使用erl -boot start_clean并在其中进行分配:

.then

然后使用var myEditor; ClassicEditor .create( document.querySelector( '#editor' ) ) .then( editor => { console.log( 'Editor was initialized', editor ); myEditor = editor; } ) .catch( err => { console.error( err.stack ); } );

获取数据

也请看看:https://docs.ckeditor.com/ckeditor5/latest/framework/guides/ui/document-editor.html#the-editor