如何使用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。