关于ueditor1_4_3 上传出现无法加载配置的问题

我的解决方案是:

1. 检查 ueditor.config.js  中的 serverUrl: URL + "/net/controller.ashx" 的配置,记得一定用绝对路径

2. 如果是上传的视频,保存之后再页面显示的时候,需要添加如下的js 文件

<link href="ueditor1_4_3-utf8-net/third-party/video-js/video-js.min.css" rel="stylesheet" />

<script src="ueditor1_4_3-utf8-net/third-party/video-js/video.js"></script>

3. 需要修改 config.json 文件中的访问路径

"videoUrlPrefix": "/ueditor1_4_3-utf8-net/net/", /* 视频访问路径前缀 */

原文地址:https://www.cnblogs.com/yougmi/p/4463205.html