当前位置:首页 » 《关注互联网》 » 正文

前端vue-实现富文本组件

0 人参与  2024年10月06日 12:40  分类 : 《关注互联网》  评论

点击全文阅读


1.使用wangeditor富文本编辑器
工具网站:https://www.wangeditor.com/v4/
下载安装命令:npm i wangeditor --save
成品如下图:
在这里插入图片描述

组件实现代码

<template>  <div>    <!-- 富文本编辑器 -->    <div id="wangeditor">    </div>  </div></template><script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script><script>import { uploadImage } from '@/api/api'; // 导入图片上传apiimport E from 'wangeditor';export default {  name: 'richText',  components: {  },  props: {    defaultDetails: {      default: '请填写内容',      type: String,    },  },  watch: {    htmlContent(val) {      this.$emit('change', val); // 将改变同步到父组件      if (this.validateEvent) {        this.dispatch('ElFormItem', 'el.form.change', [val]);      }    }  },  data() {    return {      editor: null,      htmlContent: '<p>hello</p>',      firtherMethod: 'loadingCompleted', // 回调父组件,通知editor已经创建完成    };  },  methods: {    // 获取text文本    getText() {      const text = this.editor.txt.text();      console.log('text = ', text);      return text;    },    // 获取html    getHtml() {      const html = this.editor.txt.html();      console.log('thml = ', html);      return html;    },    // 图片上传自定义实现    async uploadImage(files) {      const file = files[0];      console.log('Fuedit2-uploadImage file = ', file);      const res = await uploadImage(obj);      const path = SOCKET + (res.path || {});      console.log('完整path = ', path);      return path;    },    // 设置内容    setHtml(html) {      this.editor.txt.html(html);// 重新设置编辑器内容    },    // 追加内容    appentHtml(html) {      this.editor.txt.append(html);// 继续追加内容。    },    // 销毁编辑器    beforeDestroy() {      // 销毁编辑器      console.log('销毁前');      this.editor.destroy()      console.log('销毁后');      this.editor = null    },    // 清空编辑器内容    clearText() {      this.editor.txt.clear();    },    createEditor() {      if(this.editor !== null) {        return;      }      this.editor = new E('#wangeditor');      // 或者 const editor = new E( document.getElementById('div1') )      this.editor.config.height = 200; // 设置高度      // 内容发生改变时回调      // this.editor.config.onchange = function (html) {        // this.htmlContent = html;      // }      this.editor.config.placeholder = this.defaultDetails; // 自定义初始文字提示      this.editor.config.focus = false;// 取消初始化时自动聚焦      this.editor.config.menus = [ // 定义显示哪些菜单和菜单的顺序。        'head', // 标题        'bold', // 粗体        'fontSize', // 字号        'fontName', // 字体        'italic', // 斜体        'underline', // 下划线        // 'strikeThrough', // 删除线        // 'indent',        'lineHeight',        'foreColor', // 文字颜色        'backColor', // 背景颜色        'link', // 插入链接        'list', // 列表        // 'todo',        // 'justify', // 对齐方式        // 'quote', // 引用        // 'emoticon', // 表情        'image', // 插入图片        // 'table', // 表格        // 'video', // 插入视频        // 'code', // 插入代码        'splitLine',        'undo', // 撤销        'redo', // 重复      ];      // this.editor.config.uploadImgServer = '/upload-img'; // 配置上传server 接口地址      this.editor.config.uploadImgMaxSize = 2 * 1024 * 1024; // 图片上传max      this.editor.config.uploadImgAccept = ['jpg', 'jpeg', 'png', 'gif', 'bmp', 'webp']; // 图片上传类型      this.editor.config.uploadImgMaxLength = 1; // 一次最多上传 1 个图片      this.editor.config.customUploadImg = async function (resultFiles, insertImgFn) { // 自定义图片上传实现      // resultFiles 是 input 中选中的文件列表;insertImgFn 是获取图片 url 后,插入到编辑器的方法        const file = resultFiles[0];        const path = await uploadImage(file);//返回图片地址        console.log('完整path = ', path);      // 上传图片,返回结果,将图片插入到编辑器中        insertImgFn(path);      }      // 使用base64格式保存本地图片,不可与uploadImgServer同时使用      // this.editor.config.uploadImgShowBase64 = true;      this.editor.create();      // this.editor.txt.html('<p>用 JS 设置的内容</p>');// 重新设置编辑器内容      // 第一步,初始化 textarea 的值      // text1.val(this.editor.txt.html())      console.log('this.editor = ', this.editor);      // this.editor.txt.append('<p>追加的内容</p>');// 继续追加内容。      // 创建完成,回调父组件      try {        this.$emit(this.firtherMethod, null);      } catch (error) {        console.log('editor 完成,回调父组件失败 error = ', error);      }    },  },  mounted() {    this.createEditor();  },};</script><style lang="css"  src="">/* @import '../css/Cnel.css';/* 使用style属性src引入外部css,仅在当前s组件有效 */</style>

组件使用方式

RichText: () => import('@/components/RichText.vue'),<rich-text v-model="details" ref="fueditModule" @loadingCompleted="loadingCompleted"></rich-text>export default Vue.extend({  name: 'UpdateText',  components: {    RichText: () => import('@/components/RichText.vue'),  },  methods: {  // 富文本组件加载完成回调    loadingCompleted() {      try {        console.log('editor加载完成,回调父组件');        // this.details = this.$refs.fueditModule.setHtml('<p><b>招商会详情!!</b></p>');      } catch (error) {        console.log('打开弹窗 err =', error);      }    },// 调用子组件获取富文本内容this.details = this.$refs.fueditModule.getHtml();// 调用子组件设置富文本内容this.$refs.fueditModule.setHtml('<p><b>设置详情!!</b></p>');// 调用子组件销毁富文本编辑框this.$refs.fueditModule.beforeDestroy();  }})

点击全文阅读


本文链接:http://m.zhangshiyu.com/post/168278.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

最新文章

  • 祖母寿宴,侯府冒牌嫡女被打脸了(沈屿安秦秀婉)阅读 -
  • 《雕花锦年,昭都旧梦》(裴辞鹤昭都)完结版小说全文免费阅读_最新热门小说《雕花锦年,昭都旧梦》(裴辞鹤昭都) -
  • 郊区41号(许洛竹王云云)完整版免费阅读_最新全本小说郊区41号(许洛竹王云云) -
  • 负我情深几许(白诗茵陆司宴)完结版小说阅读_最热门小说排行榜负我情深几许白诗茵陆司宴 -
  • 九胞胎孕妇赖上我萱萱蓉蓉免费阅读全文_免费小说在线看九胞胎孕妇赖上我萱萱蓉蓉 -
  • 为保白月光,侯爷拿我抵了债(谢景安花田)小说完结版_完结版小说全文免费阅读为保白月光,侯爷拿我抵了债谢景安花田 -
  • 陆望程映川上官硕《我的阿爹是带攻略系统的替身》最新章节阅读_(我的阿爹是带攻略系统的替身)全章节免费在线阅读陆望程映川上官硕
  • 郑雅琴魏旭明免费阅读_郑雅琴魏旭明小说全文阅读笔趣阁
  • 头条热门小说《乔书意贺宴临(乔书意贺宴临)》乔书意贺宴临(全集完整小说大结局)全文阅读笔趣阁
  • 完结好看小说跨年夜,老婆初恋送儿子故意出车祸_沈月柔林瀚枫完结的小说免费阅读推荐
  • 热推《郑雅琴魏旭明》郑雅琴魏旭明~小说全文阅读~完本【已完结】笔趣阁
  • 《你的遗憾与我无关》宋怀川冯洛洛无弹窗小说免费阅读_免费小说大全《你的遗憾与我无关》宋怀川冯洛洛 -

    关于我们 | 我要投稿 | 免责申明

    Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1