wangeditor-team / wangEditor

wangEditor, open-source Web rich text editor 开源 Web 富文本编辑器
http://www.wangeditor.com/
MIT License
17.56k stars 3.32k forks source link

insertNode 不能添加图片 #5187

Open wangmiaoduan opened 1 year ago

wangmiaoduan commented 1 year ago

bug 描述

insertNode 不能添加图片,文本可以 图片不可以

你预期的样子是?

insertNode 可以插入图片

const nodeList = [
    { type: 'paragraph', children: [{ text: 'aaa' }] },
    {type: 'image', src: '',style:{width: '87.00px', height: '37.00px'}},
  ]
nodeList.forEach((item:any) => {
      editor.insertNode(item)
})
hou123yd commented 1 year ago

我这里可以,可以把style先去掉试试,src是必填的,应该是不能为空

1293930075 commented 1 year ago
const confirmFile = (image) => {
    const editor = editorRef.value;
    editor.insertNode({
        type: 'image',
        src: image.url, //image.url 是线上地址
    });
    // 报错提示: t10 is not iterable
};

麻烦一并看看吧