默认vue-quill-editor上传之后是转成base64

更多干货,关注微信公众号
在这里插入图片描述

废话少说,代码
你需要一个工具js

/*富文本编辑图片上传配置*/
const uploadConfig = {
	action: 'common.uploadfile.single', // 必填参数 图片上传地址
	methods: 'POST', // 必填参数 图片上传方式
	token: '', // 可选参数 如果需要token验证,假设你的token有存放在sessionStorage
	name: 'img', // 必填参数 文件的参数名
	size: 1024, // 可选参数   图片大小,单位为Kb, 1M = 1024Kb
	accept: 'image/png, image/gif, image/jpeg, image/bmp, image/x-icon' // 可选 可上传的图片格式
};

// toolbar工具栏的工具选项(默认展示全部)
const toolOptions = [
	['bold', 'italic', 'underline', 'strike'],
	['blockquote', 'code-block'],
	[{
		'header': 1
	}, {
		'header': 2
	}],
	[{
		'list': 'ordered'
	}, {
		'list': 'bullet'
	}],
	[{
		'script': 'sub'
	}, {
		'script': 'super'
	}],
	[{
		'indent': '-1'
	}, {
		'indent': '+1'
	}],
	[{
		'direction': 'rtl'
	}],
	[{
		'size': ['small', false, 'large', 'huge']
	}],
	[{
		'header': [1, 2, 3, 4, 5, 6, false]
	}],
	[{
		'color': []
	}, {
		'background': []
	}],
	[{
		'font': []
	}],
	[{
		'align': []
	}],
	['clean'],
	['link', 'image', 'video']
];
const handlers = {
	image: function image() {
		var self = this;

		var fileInput = this.container.querySelector('input.ql-image[type=file]');
		if(fileInput === null) {
			fileInput = document.createElement('input');
			fileInput.setAttribute('type', 'file');
			// 设置图片参数名
			if(uploadConfig.name) {
				fileInput.setAttribute('name', uploadConfig.name);
			}
			// 可设置上传图片的格式
			fileInput.setAttribute('accept', uploadConfig.accept);
			fileInput.classList.add('ql-image');
			// 监听选择文件
			fileInput.addEventListener('change', function() {
				// 创建formData
				let formData = new FormData();
				formData.append('file', fileInput.files[0]);
				fileInput.value = '';
				//这里 请求
				btwApiUtil.post('common.uploadfile.single', {}, function(resp) {
					var path = resp.data.ftpPath;
					var picPath = process.env.FTP_URL + path;
					let length = self.quill.getSelection(true).index;
					//这里很重要,你图片上传成功后,img的src需要在这里添加,res.path就是你服务器返回的图片链接。            
					self.quill.insertEmbed(length, 'image', picPath);
					self.quill.setSelection(length + 1)
					fileInput.value = ''
				}, formData);
			});
			this.container.appendChild(fileInput);
		}
		fileInput.click();
	}
};

export default {
	placeholder: '',
	theme: 'snow', // 主题
	modules: {
		toolbar: {
			container: toolOptions, // 工具栏选项
			handlers: handlers // 事件重写
		}
	}
};

接着在你用的地方

import quillConfig from "@/utils/editor/quill-config.js";

然后

<quill-editor :options="quillOption" v-model="data.content" ref="myQuillEditor" @blur="onEditorBlur($event)" @focus="onEditorFocus($event)" @change="onEditorChange($event)">
									</quill-editor>

即可!

更多干货,关注微信公众号
在这里插入图片描述

Logo

前往低代码交流专区

更多推荐