溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在vue中利用vue-quill-editor富文本編輯器將圖片上傳到服務(wù)器

發(fā)布時間:2021-01-13 14:25:02 來源:億速云 閱讀:518 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章給大家介紹怎么在vue中利用vue-quill-editor富文本編輯器將圖片上傳到服務(wù)器,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

一、準(zhǔn)備工作

下載vue-quill-editor

npm install vue-quill-editor --save 或者 yarn add vue-quill-editor

二、定義全局組件quill-editor

下載好vue-quill-editor后,我們需要定義一個全局組件,把這個組件名字命名為quill-editor

1、定義template模板

<div>
 <quill-editor
 v-model="value"
 ref="myQuillEditor"
 :options="editorOption"
 @change="onEditorChange"
 >
 </quill-editor>
 <input type="file" hidden accept=".jpg,.png" ref="fileBtn" @change="handleChange" />
</div>

2、定義富文本選項配置

editorOption: {
 toolbar: [
 ['bold', 'italic', 'underline'], //加粗、斜體、下劃線、刪除線, 'strike'
 ['blockquote', 'code-block'], //引用、代碼塊
 [{ 'header': 1 }, { 'header': 2 }], //H1 H2
 [{ 'list': 'ordered' }, { 'list': 'bullet' }], //列表
 [{ 'script': 'sub' }, { 'script': 'super' }], //上標(biāo)、下標(biāo)
 [{ 'indent': '-1' }, { 'indent': '+1' }], //縮進(jìn)
 [{ 'direction': 'rtl' }], //文字編輯方向,從左到右還是從右到左
 [{ 'size': ['small', false, 'large', 'huge'] }], //文字大小
 [{ 'header': [1, 2, 3, 4, 5, 6, false] }], //選中的文字容器高度
 [{ 'font': [] }], //字體樣式
 [{ 'color': [] }, { 'background': [] }], //顏色、背景顏色
 [{ 'align': [] }], //對齊方式
 ['clean'], //清除選中文字的所有樣式
 ['link', 'image', 'video'] //超鏈接、圖片、視頻鏈接
 ],
}

三、相關(guān)方法

1、改變原有富文本編輯器上傳圖片綁定方法

mounted() {
 if (this.$refs.myQuillEditor) {
 //myQuillEditor改成自己的
 this.$refs.myQuillEditor.quill.getModule("toolbar").addHandler("image", this.imgHandler);
 }
},
methods:{
 imgHandler(state) {
 if (state) {
 		//觸發(fā)input的單擊 ,fileBtn換成自己的
  this.$refs.fileBtn.click()
 }
 }
}

2、上傳事件

handleChange(e) {
 const files = Array.prototype.slice.call(e.target.files);
 if (!files) {
 return;
 }
 let formdata = new FormData();
 formdata.append("file_name", files[0].name);
 formdata.append("imgs", files[0]);
 //使用了axios請求
 this.axios({
 url: this.$store.state.baseUrl + 'upload/ueditorFile',
 method: 'post',
 data: formdata,
 headers: {'client-identity': localStorage.getItem('session_id')}
 }).then((res) => {
 	//這里設(shè)置為空是為了聯(lián)系上傳同張圖可以觸發(fā)change事件
 this.$refs.fileBtn.value = "";
 if (res.data.code == 200) {
  let selection = this.$refs.myQuillEditor.quill.getSelection();
  //這里就是返回的圖片地址,如果接口返回的不是可以訪問的地址,要自己拼接
  let imgUrl = this.$store.state.baseUrl + res.data.data; 
  imgUrl = imgUrl.replace(/\\/g,"/") 
			//獲取quill的光標(biāo),插入圖片 
  this.$refs.myQuillEditor.quill.insertEmbed(selection != null ? selection.index : 0, 'image', imgUrl)   
			//插入完成后,光標(biāo)往后移動一位 
  this.$refs.myQuillEditor.quill.setSelection(selection.index + 1);
 } 
 })
}

關(guān)于怎么在vue中利用vue-quill-editor富文本編輯器將圖片上傳到服務(wù)器就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI