91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

vue中如何創建多個ueditor實例教程

發布時間:2020-09-02 11:42:46 來源:腳本之家 閱讀:177 作者:sing 欄目:web開發

前言

前一段時間公司Vue.js項目需要使用UEditor富文本編輯器,在百度上搜索一圈沒有發現詳細的說明,決定自己嘗試,忙活了一天終于搞定了。

具體可以參考這篇文章:https://www.jb51.net/article/118413.htm

ueditor是百度編輯器,官網地址:http://ueditor.baidu.com/website/

完整的功能演示,可以參考:http://ueditor.baidu.com/website/onlinedemo.html

最近工作中要求升級,需要在vue中創建多個ueditor實例,我使用neditor,其實就是把ueditor樣式美化了下,其他和ueditor幾乎一樣,下面話不多說了,來一起看看詳細的介紹吧。

截圖

vue中如何創建多個ueditor實例教程

說明

下載ueditor或neditor源碼,拷貝到static目錄下面

vue中如何創建多個ueditor實例教程

然后修改ueditor.config.js配置文件

vue中如何創建多個ueditor實例教程

在vue項目的main.js添加ueditor引用

vue中如何創建多個ueditor實例教程

新建3個頁面 home,tab1,tab2。tab1和tab2是home下面的子頁面

vue中如何創建多個ueditor實例教程

在router-view外面一定要添加keep-alive組件和transition組件,不然ueditor實例無法保存

在components文件夾下面新建一個editor作為編輯器的公共組件

在tab1中調用editor,同時要傳入一個id并在editor頁面接受,注意如果需要多個實例,id一定不能相同

 <template>
 <div>
 <editor ref="editor" id="tab1Editor"></editor>
 <button @click="getContent" class="m-t-10">獲取內容</button>
 <div>
 <span>當前富文本編輯器內容是: {{content}}</span>
 </div>
 </div>
 </template>

 <script>
 import Editor from '@/components/editor'
 export default {
 name: 'tab1',
 components: { Editor },
 data() {
 return {
 content:''
 }
 },
 methods: {
 //獲取內容
 getContent(){
 this.content = this.$refs.editor.content
 }
 }
 }
 </script>

 <style scoped>
 .m-t-10{
 margin-top: 10px;
 }
 </style>

editor頁面代碼,因為我們在router-view套用了keep-alive,所以ueditor的初始化一定要放在activated里面,
確保每次進入頁面都會重新渲染ueditor,在deactivated里面調用ueditor的destroy方法,確保每次離開頁面的時候
會銷毀編輯器實例,這樣就可以渲染多個ueditor實例了,并且每次切換都能保存編輯器的內容。

如果多個tab只需要一個實例請調用reset()方法

 <template>
 <div>
 <div :id="this.id"></div>
 </div>
 </template>

 <script>
 export default {
 name: 'editor',
 props: ['id'],
 data() {
 return {
 ue: '', //ueditor實例
 content: '', //編輯器內容
 }
 },
 methods: {
 //初始化編輯器
 initEditor() {
 this.ue = UE.getEditor(this.id, {
 initialFrameWidth: '100%',
 initialFrameHeight: '350',
 scaleEnabled: true
 })
 //編輯器準備就緒后會觸發該事件
 this.ue.addListener('ready',()=>{
 //設置可以編輯
 this.ue.setEnabled()
 })
 //編輯器內容修改時
 this.selectionchange()
 },
 //編輯器內容修改時
 selectionchange() {
 this.ue.addListener('selectionchange', () => {
 this.content = this.ue.getContent()
 })
 }
 },
 activated() {
 //初始化編輯器
 this.initEditor()
 },
 deactivated() {
 //銷毀編輯器實例,使用textarea代替
 this.ue.destroy()
 //重置編輯器,可用來做多個tab使用同一個編輯器實例
 //如果要使用同一個實例,請注釋destroy()方法
 //this.ue.reset()
 }
 }
 </script>

源碼地址

github:https://github.com/oblivioussing/vue-ueditor-multi

本地下載:http://xiazai.jb51.net/201711/yuanma/vue-ueditor-multi(jb51.net).rar

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。

向AI問一下細節

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

AI

蒲城县| 新巴尔虎右旗| 五寨县| 和平县| 惠水县| 称多县| 汉中市| 醴陵市| 绥棱县| 师宗县| 嫩江县| 镇坪县| 松江区| 革吉县| 闸北区| 永福县| 棋牌| 全椒县| 蓬安县| 石楼县| 项城市| 郁南县| 海门市| 夏津县| 信宜市| 扶沟县| 九江市| 林口县| 阜平县| 昌平区| 会泽县| 虞城县| 天镇县| 剑河县| 桐庐县| 大厂| 施秉县| 万载县| 葵青区| 通许县| 吴忠市|