溫馨提示×

溫馨提示×

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

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

Vue+Element UI+vue-quill-editor富文本編輯器及插入圖片自定義

發(fā)布時間:2020-09-26 06:51:00 來源:腳本之家 閱讀:216 作者:天青色等煙雨11 欄目:web開發(fā)

本文為大家分享了Vue+Element UI+vue-quill-editor富文本編輯器及插入圖片自定義,供大家參考,具體內(nèi)容如下

1.安裝

npm install vue-quill-editor --save

2.在main.js中引入

import VueQuillEditor from 'vue-quill-editor'
import 'quill/dist/quill.core.css'
import 'quill/dist/quill.snow.css'
import 'quill/dist/quill.bubble.css'
 
Vue.use(VueQuillEditor);

3. template

<div>
 
  <!-- 圖片上傳組件輔助-->
  <el-upload
  class="avatar-uploader"
  :action="serverUrl"
  name="img"
  :headers="header"
  :show-file-list="false"
  :on-success="uploadSuccess"
  :on-error="uploadError"
  :before-upload="beforeUpload">
  </el-upload>
  <quill-editor
  v-model="content"
  ref="myQuillEditor"
  :options="editorOption"
  @change="onEditorChange($event)"
  >
  </quill-editor>
 </div>

4.js

<script>
 const toolbarOptions = [
 ['bold', 'italic', 'underline', 'strike'],  // toggled buttons
 [{'header': 1}, {'header': 2}],    // custom button values
 [{'list': 'ordered'}, {'list': 'bullet'}],
 [{'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'],
 ['clean']
 
 ]
 export default {
 data() {
  return {
  quillUpdateImg: false, // 根據(jù)圖片上傳狀態(tài)來確定是否顯示loading動畫,剛開始是false,不顯示
  content: null,
  editorOption: {
   placeholder: '',
   theme: 'snow', // or 'bubble'
   modules: {
   toolbar: {
    container: toolbarOptions,
    handlers: {
    'image': function (value) {
     if (value) {
     // 觸發(fā)input框選擇圖片文件
     document.querySelector('.avatar-uploader input').click()
     } else {
     this.quill.format('image', false);
     }
    }
    }
   }
   }
  },
  serverUrl: '/manager/common/imgUpload', // 這里寫你要上傳的圖片服務(wù)器地址
  header: {
   // token: sessionStorage.token
  } // 有的圖片服務(wù)器要求請求頭需要有token
  }
 },
 methods: {
  onEditorChange({editor, html, text}) {//內(nèi)容改變事件
  console.log("---內(nèi)容改變事件---")
  this.content = html
  console.log(html)
  },
  // 富文本圖片上傳前
  beforeUpload() {
  // 顯示loading動畫
  this.quillUpdateImg = true
  },
 
  uploadSuccess(res, file) {
  // res為圖片服務(wù)器返回的數(shù)據(jù)
  // 獲取富文本組件實例
  console.log(res);
  let quill = this.$refs.myQuillEditor.quill
  // 如果上傳成功
  if (res.code == 200 ) {
   // 獲取光標(biāo)所在位置
   let length = quill.getSelection().index;
   // 插入圖片 res.url為服務(wù)器返回的圖片地址
   quill.insertEmbed(length, 'image', res.url)
   // 調(diào)整光標(biāo)到最后
   quill.setSelection(length + 1)
  } else {
   this.$message.error('圖片插入失敗')
  }
  // loading動畫消失
  this.quillUpdateImg = false
  },
  // 富文本圖片上傳失敗
  uploadError() {
  // loading動畫消失
  this.quillUpdateImg = false
  this.$message.error('圖片插入失敗')
  }
 }
 }

注意:serverUrl :文件上傳地址不能直接寫全路徑,會出現(xiàn)跨域問題報錯。需要在conf/index.js 中 進(jìn)行配置

module.exports = {
 dev: {
 // Paths
 assetsSubDirectory: 'static',
 assetsPublicPath: '/',
 host: 'localhost', // can be overwritten by process.env.HOST
 port: 8088, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
 autoOpenBrowser: true,
 cssSourceMap: true,
 proxyTable: {
  '/api': {
  target: 'http://localhost:18080/', //設(shè)置調(diào)用接口域名和端口號別忘了加http
  changeOrigin: true,
  pathRewrite: {
   '^/api': '/' //這里理解成用‘/api'代替target里面的地址,組件中我們調(diào)接口時直接用/api代替
   // 比如我要調(diào)用'http://0.0:300/user/add',直接寫‘/api/user/add'即可 代理后地址欄顯示/
  }
  },
  '/manager': {
  target: 'http://localhost:18081/',
  changeOrigin: true,
  pathRewrite: {
   '^/manager': '/'
  }
  }
 }
 
 },

5.style

<style>
 .ql-editor.ql-blank, .ql-editor {
 height: 350px;
 }
</style>

6.后臺圖片上傳接口

@RequestMapping(value = "/imgUpload")
 public Map<String ,Object> imgUpload(HttpServletRequest req, MultipartHttpServletRequest multiReq)
   throws IOException {
  
  FileOutputStream fos = new FileOutputStream(
    new File("E://fileupload//upload.jpg"));
  FileInputStream fs = (FileInputStream) multiReq.getFile("img").getInputStream();
  byte[] buffer = new byte[1024];
  int len = 0;
  while ((len = fs.read(buffer)) != -1) {
   fos.write(buffer, 0, len);
  }
  fos.close();
  Map<String ,Object> map=new HashMap<>();
  map.put("code",200);
  map.put("msg","上傳成功");
  map.put("url","http://localhost:8080/tomcat.png");
  return map;//這里只做返回值測試用,url 參數(shù)為圖片上傳后訪問地址。具體根據(jù)功能進(jìn)行修改}

7.效果如下

Vue+Element UI+vue-quill-editor富文本編輯器及插入圖片自定義

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向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