最新文章專(zhuān)題視頻專(zhuān)題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專(zhuān)題1關(guān)鍵字專(zhuān)題50關(guān)鍵字專(zhuān)題500關(guān)鍵字專(zhuān)題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專(zhuān)題關(guān)鍵字專(zhuān)題tag2tag3文章專(zhuān)題文章專(zhuān)題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專(zhuān)題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

關(guān)于在vue 中使用百度ueEditor編輯器的方法實(shí)例代碼

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:07:39
文檔

關(guān)于在vue 中使用百度ueEditor編輯器的方法實(shí)例代碼

關(guān)于在vue 中使用百度ueEditor編輯器的方法實(shí)例代碼:1. 安裝 npm i vue-ueditor --save-dev 2.從nodemodels 取出ueditor1_4_3_3 這整個(gè)目錄,放入vue 的 static 目錄 3.配置 ueditor.config.js 的 21行代碼 更改路徑 var URL = '/static/ueditor1_4_3_3/' get
推薦度:
導(dǎo)讀關(guān)于在vue 中使用百度ueEditor編輯器的方法實(shí)例代碼:1. 安裝 npm i vue-ueditor --save-dev 2.從nodemodels 取出ueditor1_4_3_3 這整個(gè)目錄,放入vue 的 static 目錄 3.配置 ueditor.config.js 的 21行代碼 更改路徑 var URL = '/static/ueditor1_4_3_3/' get

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

2.從nodemodels  取出ueditor1_4_3_3 這整個(gè)目錄,放入vue 的 static 目錄 

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

 (1)     serverUrl: URL + 'php/controller.php',  這里是你配置的上傳內(nèi)容的 url ;不需要可以刪除;

?。?) 部分人使用時(shí)出現(xiàn)以下報(bào)錯(cuò):
    Uncaught TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them...
    這個(gè)問(wèn)題是因?yàn)轫?xiàng)目中的使用的babel默認(rèn)添加了use strict造成,可參考 https://segmentfault.com/q/1010000007415253
    我采用的是鏈接中答案的第三種方式:添加了babel-plugin-transform-remove-strict-mode,并在.babelrc里添加下列代碼;

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

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

4.如果不需要以組建的方式引入 則 可以這么寫(xiě) ;

<VueUeditor ueditorPath="./../../static/ueditor/" @ready="editorReady"></VueUeditor>
<script>
 import VueUeditor from 'vue-ueditor';
 import ueditor from '../components/UE';
 export default {
 components: {VueUeditor,ueditor},
 data() {
 return {
 defaultMsg: '這里是UE測(cè)試',
 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.如果要自定義組件的方式 在每個(gè)頁(yè)面引入 則  在components 中新建ue.vue 文件 貼入這個(gè)代碼

<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加載完成后,放入內(nèi)容。
 });
 },
 methods: {
 getContent() { 
 // 獲取內(nèi)容方法
 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測(cè)試',
 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. 實(shí)例化編輯器到id為 container 的 dom 容器上:
   var ue = UE.getEditor('container');
2. 設(shè)置編輯器內(nèi)容:
    ue.setContent('<p>hello!</p>');
3. 追加編輯器內(nèi)容:
    ue.setContent('<p>new text</p>', true);
4. 獲取編輯器html內(nèi)容:
    var html = ue.getContent();
5. 獲取純文本內(nèi)容:
    ue.getContentTxt();
6. 獲取保留格式的文本內(nèi)容:
    ue.getPlainTxt();
7. 判斷編輯器是否有內(nèi)容:
    ue.hasContents();
8. 讓編輯器獲得焦點(diǎn):
    ue.focus();
9. 讓編輯器失去焦點(diǎn)
    ue.blur();
10. 判斷編輯器是否獲得焦點(diǎn):
    ue.isFocus();
11. 設(shè)置當(dāng)前編輯區(qū)域不可編輯:
    ue.setDisabled();
12. 設(shè)置當(dāng)前編輯區(qū)域可以編輯:
    ue.setEnabled();
13. 隱藏編輯器:
    ue.setHide();
14. 顯示編輯器:
    ue.setShow();
15. 清空內(nèi)容:
    ue.execCommand('cleardoc');
16. 讀取草稿箱:
    ue.execCommand('drafts');
17. 清空草稿箱:
  ue.execCommand('clearlocaldata');

 本來(lái)需求是 從后臺(tái)讀取文件內(nèi)容,內(nèi)容是代碼,返回到前臺(tái),高亮顯示像 ide一樣可以實(shí)時(shí)編輯代碼,代碼可以高亮,類(lèi)似編輯器的主題一樣,然后可以保存提交 到后臺(tái),找了半天沒(méi)找到合適的插件;

總結(jié)

以上所述是小編給大家介紹的關(guān)于在vue 中使用百度ueEditor編輯器的方法實(shí)例代碼 ,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

關(guān)于在vue 中使用百度ueEditor編輯器的方法實(shí)例代碼

關(guān)于在vue 中使用百度ueEditor編輯器的方法實(shí)例代碼:1. 安裝 npm i vue-ueditor --save-dev 2.從nodemodels 取出ueditor1_4_3_3 這整個(gè)目錄,放入vue 的 static 目錄 3.配置 ueditor.config.js 的 21行代碼 更改路徑 var URL = '/static/ueditor1_4_3_3/' get
推薦度:
標(biāo)簽: VUE 編輯器 的方式
  • 熱門(mén)焦點(diǎn)

最新推薦

猜你喜歡

熱門(mén)推薦

專(zhuān)題
Top