vue2中使用wangEditor4富文本编辑器

基本使用

使用avue框架的时候用富文本编辑框然后图片上传后不能编辑大小,然后去看了源码还是使用的wangEditor3,然后再网上找了使用wangEditor的也都是一些3的文档,所以这里记一下
源码:https://github.com/wangeditor-team/wangEditor
官网:http://www.wangEditor.com
文档:http://www.kancloud.cn/wangfupeng/wangeditor3/332599
AVUE地址:https://avuejs.com/doc/plugins/ueditor-plugins

下载安装

npm 安装 npm i wangeditor --save

配置

1.在components创建一个wangEditor文件夹
2.内容:

<template lang="html">
    <div class="editor">
        <div ref="editor" class="textNeirong">
        </div>
    </div>
</template>

<script>
    import E from 'wangeditor'
    import store from '@/store/';
    export default {
        name: 'editoritem',
        data() {
            return {
                // uploadPath,components
                editor: null,
                info_: null,
                token: ''
            }
        },
        model: {
            prop: 'value',
            event: 'change'
        },
        props: {
            value: {
                type: String,
                default: ''
            },
            isClear: {
                type: Boolean,
                default: false
            }
        },
        watch: {
            isClear(val) {
                // 触发清除文本域内容
                if (val) {
                    this.editor.txt.clear()
                    this.info_ = null
                }
            },
            value: function(value) {
                if (value !== this.editor.txt.html()) {
                    this.editor.txt.html(this.value)
                }
            }
            //value为编辑框输入的内容,这里我监听了一下值,当父组件调用得时候,如果给value赋值了,子组件将会显示父组件赋给的值
        },
        created() {
            this.token = 'Bearer ' + store.getters.access_token;
        },
        mounted() {
            this.seteditor()
            this.editor.txt.html(this.value)
        },
        methods: {
            seteditor() {
                this.editor = new E(this.$refs.editor)
                this.editor.config.uploadImgShowBase64 = false // base 64 存储图片
                this.editor.config.uploadImgServer = '/trans/oss/uploadImageOss'// 填写配置服务器端地址
                this.editor.config.uploadImgHeaders = { 'Authorization': this.token }// 自定义 header
                this.editor.config.uploadFileName = 'file' // 后端接受上传文件的参数名
                this.editor.config.uploadImgMaxSize = 8 * 1024 * 1024 // 将图片大小限制为 2M
                this.editor.config.uploadImgMaxLength = 6 // 限制一次最多上传 6 张图片
                this.editor.config.uploadImgTimeout = 3 * 60 * 1000 // 设置超时时间
                // 自定义 onchange 触发的延迟时间,默认为 200 ms
                this.editor.config.onchangeTimeout = 1000 // 单位 ms

                this.editor.config.onchange = (html) => {
                    this.info_ = html // 绑定当前逐渐地值
                    this.$emit('change', this.info_) // 将内容同步到父组件中
                }
                // 创建富文本编辑器
                this.editor.create()

                this.editor.config.uploadImgHooks = {
                    fail: (xhr, editor, result) => {
                        // 插入图片失败回调
                    },
                    success: (xhr, editor, result) => {
                        // 图片上传成功回调
                    },
                    timeout: (xhr, editor) => {
                        // 网络超时的回调
                    },
                    error: (xhr, editor) => {
                        // 图片上传错误的回调
                    },
                    customInsert: (insertImg, result, editor) => {
                        //循环插入图片
                        let url = result.data.url
                        insertImg(url)
                    }
                }
            }
        }
    }
</script>

<style lang="scss">
    .editor {
        width: 100%;
        margin: auto;
        position: relative;
    }
</style>


引用

在需要调用的页面使用

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

import editorWang from '@/components/wangEnduit'

changeWang(html) {
  console.log(html)
},

在VUE3中使用

vue3.0中使用也是根据官网给出的源码做的
源码地址:https://github.com/wangeditor-team/wangEditor-with-vue3

参考地址:https://www.cnblogs.com/zzz-knight/p/12156438.html

  • 2
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值