昨天客户发现了个小BUG,文章发布使用的ueditor, 上传视频的时候当时好好的,后来怎么就是播放不了?
最终发现了原因:ueditor 第一次上传正常,但是当保存数据库,然后再次编辑回显的时候,就找不到视频的地址了。
解决方法:
//打开ueditor.config.js
//Line 418
img: ['src', 'alt', 'title', 'width', 'height', 'id', '_src', 'loadingclass', 'class', 'data-latex','style','_url'],
//Line 443
video: ['autoplay', 'controls', 'loop', 'preload', 'src', 'height', 'width', 'class', 'style','id']
这两个白名单过滤属性按照上面的配置下就可以了。大概率上是img的后两个属性 style _url
。我这边ueditor加上这两个就可以了。
转载请注明出处: https://chrunlee.cn/article/tip-ueditor-video-edit.html