多看官方文档:
layui: https://www.layui.com/doc/modules/layer.html
ueditor: http://fex.baidu.com/ueditor/#start-config
可能是我不太会用,所以出现了一堆坑,最多的就是层级的问题:
百度编辑器弹窗老是被layui弹窗挡住
最后百度了一圈,layui层级顺序是
最后在实例化ueditor的时候写入:
var ue = UE.getEditor('editor',{
zIndex: 198910123, //在layui zindex越大 代表层级 越高
autoHeightEnabled: false,
autoFloatEnabled: true
});
弹窗才显示出来了。
修改视频图片上传地址为服务器的地址,我这里没有把demo的文件修改到,
UE.Editor.prototype._bkGetActionUrl = UE.Editor.prototype.getActionUrl;
UE.Editor.prototype.getActionUrl = function(action) {
if (action == 'uploadimage' || action == 'uploadfile') {
var id = $('#carInfoId').val();
return 'test/upload';
} else if (action == 'uploadvideo') {
var id = $('#carInfoId').val();
return '/test/upload'; //这块前面要加斜杠,我也是测试才知道要加的,不然上传还有问题
}else {
return this._bkGetActionUrl.call(this, action);
}
};
参考博客:https://blog.csdn.net/eadela/article/details/76264168/
修改ueditor.all.js文件
ueditor.all.js,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'));
7343,7344,7346行,注释掉代码:
var root = UE.htmlparser(html);
me.filterInputRule(root);
html = root.toHtml();
<script type="text/javascript" charset="utf-8" src="./ueditor/ueditor.all.js"> </script>
这里修改为你的js地址就好了
我这块的页面其实还是不能显示出来,我清理掉缓存还是一样,最后是把video.js也引入到页面,才能够播放。
上传文件,后端需要返回的json格式为:
{"state":"SUCCESS","title": "test.jpg","url":"http://baidu.com/jpg"}
不然前端编辑器无法识别给出状态