vue2中使用wangEditor4富文本编辑器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue2中使用wangEditor4富文本编辑器相关的知识,希望对你有一定的参考价值。

参考技术A 参考文档: https://blog.csdn.net/kuangyuelang/article/details/109305673

新建一个wangEditor.js文件

引用
在需要调用的页面使用

<template slot="articleContentForm">
<editor-wang v-model="preDeliverableContent" @change="changeWang"></editor-wang>
</template>

import editorWang from '@/components/wangEnduit'
components:
editorWang
,
changeWang(html)
console.log(html)
,

ThinkPHP6.0使用富文本编辑器wangEditor3

UEditor是由百度web前端研发部开发所见即所得富文本web编辑器,

具有轻量,可定制,注重用户体验等特点,开源基于MIT协议,允许自由使用和修改代码。

可惜在官网下载太慢了,而且界面有些许复古,放弃了,使用了轻量级wangEditor3。

 

1.下载

手册中下载

https://www.kancloud.cn/wangfupeng/wangeditor3/332599

导入到项目中

 

 

2.项目中创建

 

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>wangEditor demo</title>
</head>
<body>
    <div id="editor">
        <p>欢迎使用 <b>wangEditor</b> 富文本编辑器</p>
    </div>

    <!-- 注意, 只需要引用 JS,无需引用任何 CSS !!!-->
    <script type="text/javascript" src="/wangEditor.min.js"></script>
    <script type="text/javascript">
        var E = window.wangEditor
        var editor = new E(\'#editor\')
        // 或者 var editor = new E( document.getElementById(\'editor\') )
        editor.create()
    </script>
</body>
</html>

 

  

 

 

 

 

 

 

 

 图片上传选的使用 base64 编码直接将图片插入到内容中,免去配置本地上传

没用Ajax,所以在表单中添加 了一个隐藏文本框

<input id="content" name="content" type="hidden">

配置onchange函数之后,用户操作(鼠标点击、键盘打字等)导致的内容变化之后,会自动触发onchange函数执行。

submit提交时富文本内容也会提交。

 

 

 

3.保存文本到数据库

 

以上是关于vue2中使用wangEditor4富文本编辑器的主要内容,如果未能解决你的问题,请参考以下文章

vue2.0项目中使用Ueditor富文本编辑器示例

在Vue2.0中集成UEditor 富文本编辑器

vue2.0项目中使用Ueditor富文本编辑器应用中出现的问题

CKEditor5 + vue2.0 富文本编辑器 图片上传highlight等用法

Vue2 封装的 Quill 富文本编辑器组件 Vue-Quill-Editor

ckeditor-vue2.0 接入富文本框