解决layui上传文件提示上传异常,实际文件已经上传成功的问题

 更新时间:2018年08月19日 18:27:55   作者:Legendary灬  
今天小编就为大家分享一篇解决layui上传文件提示上传异常,实际文件已经上传成功的问题。具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

layui上传文件提示上传异常,实际文件已经上传成功

原因:上传回调的方法接收的参数应该是json格式的,之前返回的是String,所以一直走异常的方法

@ResponseBody
@RequestMapping("/web/upload")
public JSONObject uploadSourceData(@RequestParam(value="file") MultipartFile file ){
String filePath = “”;
String fileName = filePath+System.currentTimeMillis()+"_"+file.getOriginalFilename(); //上传后的文件名  原始文件名加上时间戳
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上传文件提示上传异常,实际文件已经上传成功的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

最新评论