wangEditor后台上传成功但是,前端提示上传图片失败

遇到errno=undefined错误

在上传图片成功,但是却会触发fail并显示errno=undefined的话说明后台放回的字段中没有errno需要和后台沟通并加上此字段,还有若data有问题则需要与后台沟通,data应该是一个数组,存储着图片的值的路径

注意 不是 error, errno

此处贴上我自己的wangEditor处理后台逻辑

java 复制代码
@PostMapping("/editor/upload")
    public Dict editorUpload(MultipartFile file) throws IOException {
        String originalFilename = file.getOriginalFilename(); //文件的原始名称
        String projectPath = System.getProperty("user.dir"); 
        //System.out.println("projectPath"+projectPath);// in linux   /home/server/mooc/java
        String filesPath = projectPath + File.separator + "files"; //文件存储的目录 D:\..\Mooc\files
        String fileRealPath = filesPath + File.separator + originalFilename; //D:\..\files\abc.png
        File saveFile = new File(fileRealPath);
        if(!saveFile.getParentFile().exists()){
            saveFile.getParentFile().mkdirs(); //如果当前文件的父级目录不存在,就创建
        }
        if(saveFile.exists()){
            fileRealPath = filesPath + File.separator + System.currentTimeMillis() + "_" + originalFilename;
            saveFile = new File(fileRealPath); //D:\..\files\12313132131_abc.png
        }
        file.transferTo(saveFile);  //存储文件到本地的磁盘里面去
        String url = "http://" + ip + ":" +port + "/file/download/" + originalFilename;
        //我们要返回一个json数据,可以通过Hutool提供的dict,dict实际上是一个map
        Dict dict = Dict.create().set("errno", 0).set("data", CollUtil.newArrayList(Dict.create().set("url",url)));
        return dict;  //返回文件的链接,这个链接就是文件的下载地址
    }
相关推荐
奇舞精选10 分钟前
在 Chrome 浏览器里获取用户真实硬件信息的方法
前端·chrome
网络风云14 分钟前
golang中的包管理-下--详解
开发语言·后端·golang
京东零售技术1 小时前
一次线上生产库的全流程切换完整方案
后端
热忱11281 小时前
elementUI Table组件实现表头吸顶效果
前端·vue.js·elementui
我们的五年1 小时前
【C语言学习】:C语言补充:转义字符,<<,>>操作符,IDE
c语言·开发语言·后端·学习
林涧泣1 小时前
【Uniapp-Vue3】setTabBar设置TabBar和下拉刷新API
前端
Rhys..1 小时前
Jenkins pipline怎么设置定时跑脚本
运维·前端·jenkins
Like_wen2 小时前
【Go面试】工作经验篇 (持续整合)
java·后端·面试·golang·gin·复习
易林示2 小时前
chrome小插件:长图片等分切割
前端·chrome
zhaocarbon2 小时前
VUE elTree 无子级 隐藏展开图标
前端·javascript·vue.js