当前位置: 移动技术网 > IT编程>脚本编程>vue.js > 关于在vue 中使用百度ueEditor编辑器的方法实例代码

关于在vue 中使用百度ueEditor编辑器的方法实例代码

2018年09月23日  | 移动技术网IT编程  | 我要评论

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

2.从nodemodels  取出ueditor1_4_3_3 这整个目录,放入vue 的 static 目录 

3.配置 ueditor.config.js 的  21行代码  更改路径   var url = '/static/ueditor1_4_3_3/' || getuebasepath(); 

 (1)     serverurl: url + 'php/controller.php',  这里是你配置的上传内容的 url ;不需要可以删除;

 (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造成,可参考
    我采用的是链接中答案的第三种方式:添加了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.如果不需要以组建的方式引入 则 可以这么写 ;

<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测试',
    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 文件 贴入这个代码

<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一样可以实时编辑代码,代码可以高亮,类似编辑器的主题一样,然后可以保存提交 到后台,找了半天没找到合适的插件;

总结

以上所述是小编给大家介绍的关于在vue 中使用百度ueeditor编辑器的方法实例代码 ,希望对大家有所帮助

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网