我想获取由Editer5编写的内容并提交保存,但只能获取文本信息,而无法获取图片的内容。 this is my code
答案 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