layui上传文件提示上传异常,实际文件已经上传成功
原因:
上传回调的方法接收的参数应该是json格式的,之前返回的是String,所以一直走异常的方法上传后的文件名 原始文件名加上时间戳
FileOutputStream out;
JSONObject resObj = new JSONObject();
resObj.put("msg","ok");
try {
out = new FileOutputStream(new File(fileName));
IoUtils.copy(file.getInputStream(),out);
out.close();
} catch (Exception e) {
// TODO Auto-generated catch block
resObj.put("msg","error");
e.printStackTrace();
}
return resObj;
}
以上这篇解决layui上传文件提示上传异常,实际文件已经上传成功的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/js/30868.html