Posted in Javascript onAugust 19, 2018
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上传文件提示上传异常,实际文件已经上传成功的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
解决layui上传文件提示上传异常,实际文件已经上传成功的问题
- Author -
Legendary灬声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@