dedecmsv5.7 ueditor编辑器上传视频/修改,视频显示空白,解决方案
程序员文章站
2022-06-21 11:21:48
dedecmsv5.7 ueditor 在上传视频之后,显示空白。其实是有视频的,就是显示空白。找了资料,记录一下。 解决方案: 找到include下面的ueditor下面的ueditor.all.js文件, (1)找到(大概:17769行) 改为: (2)找到(大概:7343,7344,7345行 ......
dedecmsv5.7 ueditor 在上传视频之后,显示空白。其实是有视频的,就是显示空白。找了资料,记录一下。
解决方案:
找到include下面的ueditor下面的ueditor.all.js文件,
(1)找到(大概:17769行)
html.push(creatinsertstr( vi.url, vi.width || 420, vi.height || 280, id + i, null, cl, 'image'));
改为:
html.push(creatinsertstr( vi.url, vi.width || 420, vi.height || 280, id + i, null, cl, 'video'));
(2)找到(大概:7343,7344,7345行)
var root = ue.htmlparser(html); me.filterinputrule(root); html = root.tohtml();
将这三行注释掉。
更新一下缓存,就可以展示了
下一篇: python之操作系统介绍,进程的创建