關於在vue 中使用百度ueEditor

1. 安裝  npm i vue-ueditor --save-dev javascript

2.從nodemodels  取出ueditor1_4_3_3 這整個目錄,放入vue 的 static 目錄  php

3.配置 ueditor.config.js 的  21行代碼  更改路徑   var URL = '/static/ueditor1_4_3_3/' || getUEBasePath();  html

 (1)     serverUrl: URL + 'php/controller.php',  這裏是你配置的上傳內容的 url ;不須要能夠刪除;vue

 (2) 部分人使用時出現如下報錯:
    Uncaught TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them...
    這個問題是由於項目中的使用的babel默認添加了use strict形成,可參考 https://segmentfault.com/q/1010000007415253
    我採用的是連接中答案的第三種方式:添加了babel-plugin-transform-remove-strict-mode,並在.babelrc裏添加下列代碼;java

    2-1.1   或者在webpack.base.conf.js 添加node

  loaders: [{
    test: /\.js$/,
    exclude: /(node_modules|bower_components)/,
    loader: 'babel',
    query: {
    presets: ['es2015']
  }}]webpack

4.若是不須要以組建的方式引入 則 能夠這麼寫 ;web

 <VueUeditor ueditorPath="./../../static/ueditor/" @ready="editorReady"></VueUeditor>npm

<script>
  import VueUeditor from 'vue-ueditor';
  import ueditor from '../components/UE';
  export default {
    components: {VueUeditor,ueditor},
    data() {
      return {
        defaultMsg: '這裏是UE測試',
        content1: '這裏是UE',
        ue1: "ue1",
        config: {
          initialFrameWidth: 800,
          initialFrameHeight: 350
        }
      }
    },
    methods: {
      	getUEContent() {
	    // 獲取ueditor值
	        let content1 = UE.getEditor(this.ue1).getContentTxt();;
	        console.log(content1)
	},  
    	editorReady(editorInstance){
      		editorInstance.setContent("哈哈哈")
      	}
    }
  };

  5.若是要自定義組件的方式 在每一個頁面引入 則  在components 中新建ue.vue 文件 貼入這個代碼 segmentfault

<template>
        <script :id=id type="text/plain"></script>
</template>

<script>
    export default {
        name: 'UE',
        data() {
            return {
                editor: null
            }
        },
        props: {
            content: {
                type: String,
                default:''
            },
            config: {
                type: Object,
            },
            id: {
                type: String
            }
        },
        mounted() {
            const _this = this;
            _this.editor = UE.getEditor(_this.id, _this.config); // 初始化UE
            _this.editor.addListener("ready", function () {
                _this.editor.setContent(_this.content); // 確保UE加載完成後,放入內容。
            });
        },
        methods: {
            getContent() { 
            		// 獲取內容方法
                return this.editor.getContentTxt();;
            }
        },
        destroyed() {
            this.editor.destroy();
        },
    }
</script>

而後就能夠   import ueditor from '../components/UE';   //引入

 

<ueditor :content=content1 :config=config :id="ue1"></ueditor>  //使用

 

<script>
  import VueUeditor from 'vue-ueditor';
  import ueditor from '../components/UE';
  export default {
    components: {VueUeditor,ueditor},
    data() {
      return {
        defaultMsg: '這裏是UE測試',
        content1: '這裏是UE',
        ue1: "ue1",
        config: {
          initialFrameWidth: 800,
          initialFrameHeight: 350
        }
      }
    },
    methods: {
          getUEContent() {
        // 獲取ueditor值
            let content1 = UE.getEditor(this.ue1).getContentTxt();;
            console.log(content1)
        },
        editorReady(editorInstance){
              editorInstance.setContent("哈哈哈")
          }
    }
  };
</script>  

  這樣就能夠了。

  附配置清單 

1. 實例化編輯器到id爲 container 的 dom 容器上:
   var ue = UE.getEditor('container');
2. 設置編輯器內容:
    ue.setContent('<p>hello!</p>');
3. 追加編輯器內容:
    ue.setContent('<p>new text</p>', true);
4. 獲取編輯器html內容:
    var html = ue.getContent();
5. 獲取純文本內容:
    ue.getContentTxt();
6. 獲取保留格式的文本內容:
    ue.getPlainTxt();
7. 判斷編輯器是否有內容:
    ue.hasContents();
8. 讓編輯器得到焦點:
    ue.focus();
9. 讓編輯器失去焦點
    ue.blur();
10. 判斷編輯器是否得到焦點:
    ue.isFocus();
11. 設置當前編輯區域不可編輯:
    ue.setDisabled();
12. 設置當前編輯區域能夠編輯:
    ue.setEnabled();
13. 隱藏編輯器:
    ue.setHide();
14. 顯示編輯器:
    ue.setShow();
15. 清空內容:
    ue.execCommand('cleardoc');
16. 讀取草稿箱:
    ue.execCommand('drafts');
17. 清空草稿箱:
  ue.execCommand('clearlocaldata');

 原本需求是 從後臺讀取文件內容,內容是代碼,返回到前臺,高亮顯示像 ide同樣能夠實時編輯代碼,代碼能夠高亮,相似編輯器的主題同樣,而後能夠保存提交 到後臺,找了半天沒找到合適的插件;

  若是有推薦的歡迎Q我   qq735675958,一塊兒交流下.謝謝

相關文章
相關標籤/搜索