tinymce富文本支持word内容同时粘贴文字图片上传 vue2

07-21 1053阅读

效果图
tinymce富文本支持word内容同时粘贴文字图片上传 vue2

先放文件
tinymce富文本支持word内容同时粘贴文字图片上传 vue2

文件自取tinymce: tinymce富文本简单配置及word内容粘贴图片上传

封装tinymce
tinymce富文本支持word内容同时粘贴文字图片上传 vue2

文件自取:tinymce: tinymce富文本简单配置及word内容粘贴图片上传

页面引用组件

          
  import TinymceSimplify from '@/components/TinymceSimplify'
    components: {
      TinymceSimplify,
    },
  searchData(res) {
         this.knowledgeBlockItem.content=res.data
 this.$refs.TinymceSimplify.changeVaulue(res.data)
        },




简单解释一下封装文件的内容

总体思路就是,找到粘贴的内容将img的src转换成Blob URI,这样页面可以正常展示图片了

src/components/TinymceSimplify/index

data() {
    return {
      //初始化配置
      myValue: this.value,
      init: {
       
        init_instance_callback: editor => {
          editor.on("paste", evt => {
            // 监听粘贴事件
            this.onPaste(evt);
          });
        },
 
    };
  },

提取图片信息,转换成Blob URI,再在监听事件中获取页面元素,将img src转换

 

  editor.on("NodeChange Change KeyUp SetContent", () => {
            this.hasChange = true;
            this.$nextTick(() => {
              console.log("输入?zhelieditor.getContent()");
              console.log("this.pasteChange", this.pasteChange);
              if (this.pasteChange) {
                // HTML字符串
                let htmlString = editor.getContent();
                // Blob URL数组
                let urls = this.blobUrlArr;
                // 使用DOMParser解析HTML字符串
                let parser = new DOMParser();
                let doc = parser.parseFromString(htmlString, "text/html");
                // 获取所有的标签
                let imgs = doc.querySelectorAll("img");
                // 遍历imgs和urls数组,设置每个img的src属性
                imgs.forEach((img, index) => {
                  if (index  {
                  editor.setContent(modifiedHtmlString);
                });
              }
              this.$emit("input", editor.getContent());
            });
          });
          editor.on("paste", (evt) => {
            // 监听粘贴事件
            this.onPaste(evt, editor);
          });
        },
VPS购买请点击我

文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

目录[+]