問題:如下圖,在百度編輯器中插入視頻,視頻網址可以識別,但是提交內容後視頻卻顯示不了。 解決:這個問題主要是編輯器中會過濾一些html標簽,所以可以給標簽添加白名單。 修改 ueditor.config.js 文件: 修改: img: ['src', 'alt', 'title', 'width', ...
問題:如下圖,在百度編輯器中插入視頻,視頻網址可以識別,但是提交內容後視頻卻顯示不了。
解決:這個問題主要是編輯器中會過濾一些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']
修改後如下所示: