wangEditor版本升级导致的一些问题

系统早期使用的wangEditor的4.x版本,录入了很多数据。之后升级了5.x版本。 近期用户编辑早先4.x时期录入的数据,直接报错。定位错误是调用editor.setHtml(content);报错。

问题1: # Cannot read properties of null (reading 'length')

官方方案#4933

出问题数据如下:

js 复制代码
<h3 id=\"prnoj\">4.标题</h3>
<a  href=\"https://github.com/wangeditor-team/wangEditor/issues/4933\"   target=\"_blank\">https://github.com/wangeditor-team/wangEditor/issues/4933
    </a><br/>

页面崩溃,控制台打印错误日志如下:

其中的a标签替换为img标签也报同样的错

解决方案

a或者img标签外层嵌套一层p标签

js 复制代码
<h3 id=\"prnoj\">4.标题</h3><p><a href=\"https://github.com/wangeditor-team/wangEditor/issues/4933\" target=\"_blank\">https://github.com/wangeditor-team/wangEditor/issues/4933</a></p><br/>

问题2: 图片不展示

旧数据如下:

js 复制代码
<h3>标题</h3>
<div><img src=\"https://images.pexels.com/photos/19117864/pexels-photo-19117864.jpeg\" contenteditable=\"false\"/></div>

现象是:只有标题展示,图片不展示

解决方案

将img标签使用p标签包裹,只能是P标签,如下

html 复制代码
<h3>标题</h3>
<p><img src=\"https://images.pexels.com/photos/19117864/pexels-photo-19117864.jpeg\" contenteditable=\"false\"/></p>

其实在5.0输入一个图片,自动生成的代码就是p标签包裹img标签的格式

终极解决方案

如果想要4.0的数据展示5.0的效果。需要在出问题的地方都包裹一个P标签

如果不需要数据复原展示,只需要防止页面崩溃,直接try...catch 一下

js 复制代码
      try {
        editor.setHtml(content);
      } catch(e) {
        editor.setHtml(`<p>${content}</p>`);
      }
相关推荐
d***93531 分钟前
springboot3.X 无法解析parameter参数问题
android·前端·后端
n***84072 小时前
十七:Spring Boot依赖 (2)-- spring-boot-starter-web 依赖详解
前端·spring boot·后端
likuolei6 小时前
XSL-FO 软件
java·开发语言·前端·数据库
正一品程序员6 小时前
vue项目引入GoogleMap API进行网格区域圈选
前端·javascript·vue.js
j***89466 小时前
spring-boot-starter和spring-boot-starter-web的关联
前端
star_11126 小时前
Jenkins+nginx部署前端vue项目
前端·vue.js·jenkins
im_AMBER6 小时前
Canvas架构手记 05 鼠标事件监听 | 原生事件封装 | ctx 结构化对象
前端·笔记·学习·架构
JIngJaneIL6 小时前
农产品电商|基于SprinBoot+vue的农产品电商系统(源码+数据库+文档)
java·前端·数据库·vue.js·spring boot·毕设·农产品电商系统
Tongfront6 小时前
前端通用submit方法
开发语言·前端·javascript·react
可爱又迷人的反派角色“yang”6 小时前
LVS+Keepalived群集
linux·运维·服务器·前端·nginx·lvs