设为首页 加入收藏

TOP

解决百度编辑器ueditor插入视频网址保存不了问题
2019-08-15 23:31:32 】 浏览:18
Tags:解决 百度 编辑器 ueditor 插入 视频 网址 保存 不了 问题

问题:如下图,在百度编辑器中插入视频,视频网址可以识别,但是提交内容后视频却显示不了。

解决:这个问题主要是编辑器中会过滤一些html标签,所以可以给标签添加白名单。

修改 ueditor.config.js 文件:

修改:

img: ['src', 'alt', 'title', 'width', 'height', 'id', '_src', '_url', 'loadingclass', 'class', 'data-latex'],

在白名单后面添加:

source: ['src', 'type'],
embed:  ['type', 'class', 'pluginspage', 'src', 'width', 'height', 'align', 'style', 'wmode', 'play', 'autoplay', 'loop', 'menu', 'allowscriptaccess', 'allowfullscreen', 'controls', 'preload'],
iframe: ['src', 'class', 'height', 'width', 'max-width', 'max-height', 'align', 'frameborder', 'allowfullscreen']
 
 

修改后如下所示:

 

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇memcache缓存雪崩、缓存无底洞、.. 下一篇PHP Socket服务器搭建和测试

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目