0

想获取Editer5写的内容提交保存,但是只能获取文本信息,无法获取图片内容。 这是我的代码

这是我的编辑器

这是我的编辑内容

在编辑器 html

但没有数据

4

1 回答 1

1

您将创建的编辑器实例分配给一个变量,然后使用getData 函数。您可以.then在编辑器创建中使用并在那里分配它:

var myEditor;

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

然后使用获取数据 myEditor.getData();

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

于 2018-06-21T07:49:06.847 回答