就是要一个富文本编辑器,然后有图片上传功能,因为vue-quill-editor是将图片转为base64编码,所以当图片比较大时,提交后台时参数过长,导致提交失败。

vue-quill-editor引入过程略,我其它文章里面有~~

废话不多说,上代码

1.引入element的图片上传组件:

<el-form-item>
        <!-- 图片上传组件辅助-->
        <el-upload
          class="avatar-uploader2"
          :action="uploadUrl"
          name="file"
          :show-file-list="false"
          :on-success="uploadSuccessEdit"
          :before-upload="beforeUploadEdit">
        </el-upload>
        <div>
            <quill-editor class="ql-editor" v-model="formInline.content" ref="myQuillEditor" style="height: 300px;" :options="editorOption">
            </quill-editor>
        </div>
      </el-form-item>

2.上传前以及上传成功的方法:

// 上传图片前
      beforeUploadEdit(res, file) {
        // 显示loading动画
        this.quillUpdateImg = true
      },
      // 上传图片成功
      uploadSuccessEdit(res, file) {
        // res为图片服务器返回的数据
        // 获取富文本组件实例
        let quill = this.$refs.myQuillEditor.quill
        // 如果上传成功
        if (res.code == 0) {
          // 获取光标所在位置
          let length = quill.getSelection().index;
          // 插入图片  res.data.url为服务器返回的图片地址
          quill.insertEmbed(length, 'image', res.data.url)
          // 调整光标到最后
          quill.setSelection(length + 1)
        } else {
          this.$message.error('图片插入失败')
        }
        // loading动画消失
        this.quillUpdateImg = false
      },

3.定义工具栏,写在<script>标签的第一行

  // 工具栏配置
  const toolbarOptions = [
    ['bold', 'italic', 'underline', 'strike'],        // toggled buttons
    ['blockquote', 'code-block'],

    [{'header': 1}, {'header': 2}],               // custom button values
    [{'list': 'ordered'}, {'list': 'bullet'}],
    [{'script': 'sub'}, {'script': 'super'}],      // superscript/subscript
    [{'indent': '-1'}, {'indent': '+1'}],          // outdent/indent
    [{'direction': 'rtl'}],                         // text direction

    [{'size': ['small', false, 'large', 'huge']}],  // custom dropdown
    [{'header': [1, 2, 3, 4, 5, 6, false]}],

    [{'color': []}, {'background': []}],          // dropdown with defaults from theme
    [{'font': []}],
    [{'align': []}],
    ['link', 'image', 'video'],
    ['clean']                                         // remove formatting button
  ]

4.重写点击图片按钮事件

代码为:

editorOption: {
          placeholder: '',
          theme: 'snow',  // or 'bubble'
          modules: {
            toolbar: {
              container: toolbarOptions,  // 工具栏
              handlers: {
                'image': function (value) {
                  if (value) {
                    // 触发input框选择图片文件
                    document.querySelector('.avatar-uploader2 input').click()
                  } else {
                    this.quill.format('image', false);
                  }
                }
              }
            }
          }
        },

 

 

到此,图片上传改为上传到服务器修改完成,点击图片的icon的时候,文本编辑器最后存储的是服务器返回的url地址

Logo

前往低代码交流专区

更多推荐