vue使用 wangeditor 富文本 + 富文本回显带标签问题解决

发布时间:2023-02-18 13:30

背景:业务需求,要实现一个富文本框,好方便用户插入图片

问题:百度了一整天,看了n多文章包括官方文档,又花了半天时间实现需求,对于小白来说,真的是大难题,又着急,又害怕,结果就是,越急越搞不定……此处省略我的吐槽

来吧,上步骤:

一、安装富文本 wangEditor(参考官方文档)wangEditor

npm install wangeditor --save

我这里装的是版本4 (因为我折腾了半天的版本5 没搞出来)

二、在components文件夹下新建一个Vue文件,名字随便。参考:wangEditor.vue

把下面代码复制粘贴进去(图片上传部分还没完善好)

<template>
    <div>
        <div id="websiteEditorElem" style="height:300px;background: #ffffff;"></div>
    </div>
</template>

<script>
import E from 'wangeditor'
export default {
    name: "wangEditor",
    props: {
        content: "" //获取从父组件中传过来的值,主要用于修改的时候获取值,并加入到富文本框中
    },
    data() {
        return {
            phoneEditor: '',
            name: '',
        }
    },
    methods: {

    },
    mounted() {
        this.phoneEditor = new E('#websiteEditorElem')
        // 上传图片到服务器,base64形式
        this.phoneEditor.config.uploadImgShowBase64 = true
        // // 隐藏网络图片
        this.phoneEditor.config.showLinkImg = false;

        this.phoneEditor.config.debug = true;
        //图片上传接口
        this.phoneEditor.config.uploadImgServer = '' // 上传图片的接口地址
        this.phoneEditor.config.uploadFileName = 'image' // formdata中的name属性,比如现在是将图片image加入到formdate,后台从image中接收到图片数据
        this.phoneEditor.config.uploadImgHeaders = {
            token: sessionStorage.getItem("token") // 设置请求头
        }
        this.phoneEditor.config.uploadImgHooks = {
            customInsert: function (insertImg, result, editor) {
                console.log("成功", result);
                // before: function (xhr, editor, files) {
                //     // 图片上传之前触发
                //     // xhr 是 XMLHttpRequst 对象,editor 是编辑器对象,files 是选择的图片文件

                //     // 如果返回的结果是 {prevent: true, msg: 'xxxx'} 则表示用户放弃上传
                //     // return {
                //     //     prevent: true,
                //     //     msg: '放弃上传'
                //     // }
                // },
                // success: function (xhr, editor, result) {
                //     // 图片上传并返回结果,图片插入成功之后触发
                //     // xhr 是 XMLHttpRequst 对象,editor 是编辑器对象,result 是服务器端返回的结果
                // },
                // fail: function (xhr, editor, result) {
                //     // 图片上传并返回结果,但图片插入错误时触发
                //     // xhr 是 XMLHttpRequst 对象,editor 是编辑器对象,result 是服务器端返回的结果
                // },
                // error: function (xhr, editor) {
                //     // 图片上传出错时触发
                //     // xhr 是 XMLHttpRequst 对象,editor 是编辑器对象
                // },
                // timeout: function (xhr, editor) {
                //     // 图片上传超时时触发
                //     // xhr 是 XMLHttpRequst 对象,editor 是编辑器对象
                // },

                // // 如果服务器端返回的不是 {errno:0, data: [...]} 这种格式,可使用该配置
                // // (但是,服务器端返回的必须是一个 JSON 格式字符串!!!否则会报错)
                // customInsert: function (insertImg, result, editor) {
                //     // 图片上传并返回结果,自定义插入图片的事件(而不是编辑器自动插入图片!!!)
                //     // insertImg 是插入图片的函数,editor 是编辑器对象,result 是服务器端返回的结果

                //     // 举例:假如上传图片成功后,服务器端返回的是 {url:'....'} 这种格式,即可这样插入图片:
                //     var url = result.url
                //     insertImg(url)

                //     // result 必须是一个 JSON 格式字符串!!!否则报错
                // }
            }
        }
        // 创建一个富文本编辑器
        this.phoneEditor.create()
        // 修改的时候,需要富文本内容回显,则需要加入以下代码
        this.phoneEditor.txt.html(this.content)

        this.phoneEditor.config.onchange = (html) => {
            this.info_ = html // 绑定当前逐渐地值
            this.$emit('change', this.info_) // 将内容同步到父组件中
        }
    },
}
</script>

步骤分解:

将内容同步到父组件中:

 this.phoneEditor.config.onchange = (html) => {
            this.info_ = html // 绑定当前逐渐地值
            this.$emit('change', this.info_) // 将内容同步到父组件中
        }

父组件中的获取方法是

<WangEdit @change="grtUrl" :content="editForm.content"></WangEdit>

@change="getUrl1"获取子组件中的数据,具体方法如下:

grtUrl(path){
            this.editForm.content = path;
        },

将子组件的数据加入到this.editForm.content中

修改内容时

需要富文本框中的数据回显,在子组件中加入

props:{
        content:"" //获取从父组件中传过来的值,主要用于修改的时候获取值,并加入到富文本框中
      },

三、从父组件中调用子组件时

完整代码:

<el-dialog title="修改培训信息" v-model="editWinVisible" width="45%" :before-close="handleClose" :center="false">
        <el-row class="dialog-detail">
            <el-col :span="5" class="dialog-detail-title">培训编号:</el-col>
            <el-col :span="19" class="dialog-detail-content">{{editForm.code}}</el-col>
            <el-col :span="5" class="dialog-detail-title">培训标题:</el-col>
            <el-col :span="19" class="dialog-detail-content">
                <el-input v-model="editForm.title" placeholder="请输入培训标题"></el-input>
            </el-col>
            <el-col :span="5" class="dialog-detail-title">培训内容:</el-col>
            <el-col :span="19" class="dialog-detail-content" >
                <WangEdit @change="grtUrl" :content="editForm.content"></WangEdit>
            </el-col>
            <el-col :span="5" class="dialog-detail-title">创建时间:</el-col>
            <el-col :span="19" class="dialog-detail-content">
                {{editForm.createDate}}
            </el-col>
        </el-row>
        <span slot="footer" class="dialog-footer">
            <el-button @click="CloseWin()">关闭</el-button>
            <el-button type="primary" @click="SaveEditData()">保存</el-button>
        </span>
    </el-dialog>
<script>
import WangEdit from '@/components/wangEditor.vue' //WangEditor在项目中的地址
import Req from '@/utils/ApiRequest'
export default{
    components:{ WangEdit },
    data(){
        return{
            editForm:{content:''},
            editWinVisible:false,
         }
    },
    methods:{
        grtUrl(path){
            this.editForm.content = path;
        },
        SaveEditData(){
            console.log('send',this.editForm)
            //下面这行代码就是控制页面显示是否带<p>标签的
            //this.editForm.content=this.editForm.content.replace(/<[^>]+>/g,"")
            Req.UpdateNews(this.editForm).then((res)=>{
                if(res.status==200)
                {
                    this.$message({type: 'success', message: '保存成功!'});
                    this.CloseWin();
                    this.GetTabData();
                }
                else{
                    this.$message({type: 'error', message: '保存失败!'});          
                }
            })
        },
    }
}

 富文本框就好了,数据也绑上了

\"\"

 注意:接下来,出现了一个bug,我在文本框里编辑后,页面绑定的数据神奇的带上了标签:

\"\"

 \"\"

 好了,接下来又是一顿百度,还好让我找到了

使用富文本quill-editor发送后台数据有标签问题<p>

\"\"

在点击确认提交的时候将富文本数据双向绑定的时候,添加  .replace(/<[^>]+>/g,"")

我是保存时,那么我的代码要做如下更改,加一行this.editForm.content=this.editForm.content.replace(/<[^>]+>/g,"")

​
 SaveEditData(){


            this.editForm.content=this.editForm.content.replace(/<[^>]+>/g,"")


            Req.UpdateNews(this.editForm).then((res)=>{
                if(res.status==200)
                {
                    this.$message({type: 'success', message: '保存成功!'});
                    this.CloseWin();
                    this.GetTabData();
                }
                else{
                    this.$message({type: 'error', message: '保存失败!'});          
                }
            })
        },

​

好了,完美解决问题

回去接着把图片上传图片弄好

本文借鉴:Vue使用富文本quill-editor发送后台数据有标签问题: <p> - 简书 (jianshu.com)

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号