亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何使用Vue-Quill-Editor富文本編輯器

發布時間:2021-03-26 16:01:52 來源:億速云 閱讀:353 作者:Leah 欄目:web開發

如何使用Vue-Quill-Editor富文本編輯器?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

 1、下載Vue-Quill-Editor 

npm install vue-quill-editor --save

2、下載quill(Vue-Quill-Editor需要依賴) 

npm install quill --save

3、代碼 

<template>
  <div class="edit_container">
    <quill-editor 
      v-model="content" 
      ref="myQuillEditor" 
      :options="editorOption" 
      @blur="onEditorBlur($event)" @focus="onEditorFocus($event)"
      @change="onEditorChange($event)">
    </quill-editor>
  </div>
</template>
<script>
import { quillEditor } from "vue-quill-editor"; //調用編輯器
import 'quill/dist/quill.core.css';
import 'quill/dist/quill.snow.css';
import 'quill/dist/quill.bubble.css';
export default {
  components: {
    quillEditor
  },
  data() {
    return {
      content: `<p></p><p><br></p><ol><li><strong><em>Or drag/paste an image here.</em></strong></li><li><strong><em>rerew</em></strong></li><li><strong><em>rtrete</em></strong></li><li><strong><em>tytrytr</em></strong></li><li><strong><em>uytu</em></strong></li></ol>`,
      editorOption: {}
    }
  },
  methods: {
    onEditorReady(editor) { // 準備編輯器
 
    },
    onEditorBlur(){}, // 失去焦點事件
    onEditorFocus(){}, // 獲得焦點事件
    onEditorChange(){}, // 內容改變事件
  },
  computed: {
    editor() {
      return this.$refs.myQuillEditor.quill;
    },
  }
}
</script>

OK,搞定,簡潔的富文本編輯器就展現在你眼前了,另外附上API。Vue-Quill-Editor

4、存儲及將數據庫中的數據反顯為HTML字符串

后臺接收到數據后會將字符中的標簽進行轉碼,所以我們要先進行一個解碼的操作讓他變成標簽形式的字符串:
例如后臺接收的數據如下:"&lt;h2&gt;title&lt;"  ,對應解碼后就是`<h2>title</h2>`。

//把實體格式字符串轉義成HTML格式的字符串
escapeStringHTML(str) {
  str = str.replace(/&lt;/g,'<');
  str = str.replace(/&gt;/g,'>');
  return str;
}

然后將返回值賦值給對應的參數: 

<div v-html="str" class="ql-editor">
  {{str}}
</div>

上面的str就是轉碼函數返回的值,我們要先在data中定義,所以我現在將新增跟展示放在一起,代碼如下:

<template>
  <div class="edit_container">
    <!-- 新增時輸入 -->
    <quill-editor 
      v-model="content" 
      ref="myQuillEditor" 
      :options="editorOption" 
      @blur="onEditorBlur($event)" @focus="onEditorFocus($event)"
      @change="onEditorChange($event)">
    </quill-editor>
    <!-- 從數據庫讀取展示 -->
    <div v-html="str" class="ql-editor">
      {{str}}
    </div>
  </div>
</template>
<script>
import { quillEditor } from "vue-quill-editor"; //調用編輯器
import 'quill/dist/quill.core.css';
import 'quill/dist/quill.snow.css';
import 'quill/dist/quill.bubble.css';
export default {
  components: {
    quillEditor
  },
  data() {
    return {
      content: `<p></p><p><br></p><ol><li><strong><em>Or drag/paste an image here.</em></strong></li><li><strong><em>rerew</em></strong></li><li><strong><em>rtrete</em></strong></li><li><strong><em>tytrytr</em></strong></li><li><strong><em>uytu</em></strong></li></ol>`,
      str: '',
      editorOption: {}
    }
  },
  methods: {
    onEditorReady(editor) { // 準備編輯器
 
    },
    onEditorBlur(){}, // 失去焦點事件
    onEditorFocus(){}, // 獲得焦點事件
    onEditorChange(){}, // 內容改變事件
    // 轉碼
    escapeStringHTML(str) {
      str = str.replace(/&lt;/g,'<');
      str = str.replace(/&gt;/g,'>');
      return str;
    }
  },
  computed: {
    editor() {
      return this.$refs.myQuillEditor.quill;
    },
  },
  mounted() {
    let content = ''; // 請求后臺返回的內容字符串
    this.str = this.escapeStringHTML(content);
  }
}
</script>

關于如何使用Vue-Quill-Editor富文本編輯器問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

奇台县| 遵义县| 清丰县| 东阿县| 金阳县| 盐山县| 阜新市| 兴和县| 建始县| 铁岭县| 弥勒县| 通化县| 寿光市| 邯郸县| 武汉市| 东乡族自治县| 云梦县| 江口县| SHOW| 苏尼特右旗| 上饶县| 莒南县| 乌拉特前旗| 望城县| 无锡市| 闽清县| 盐城市| 新宾| 纳雍县| 峡江县| 宁河县| 正镶白旗| 拜泉县| 库车县| 田东县| 尉氏县| 南投市| 南城县| 镇安县| 闽清县| 习水县|