setData未定义

时间:2018-12-29 11:01:34

标签: jquery jquery-plugins editor

如何使用setData设置经典编辑器的数据?

var  myeditor
    ClassicEditor
        .create(document.querySelector('#editor'))
        .then(editor => {
            console.log(editor);
         myeditor=editor;
        })

        .catch(error => {
            console.error(error);
        });
myeditor.setData('<p>html data</p>');

我在代码中遇到的错误是未定义setData。

0 个答案:

没有答案