EasyUI中使用Ajax提交文件表单

前端之家收集整理的这篇文章主要介绍了EasyUI中使用Ajax提交文件表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

HTML代码

<form id="fileForm" enctype="multipart/form-data" method="post">
     <input type="file" id="file" name="file" style="width: 200px">
 </form>

jquery代码

$('#fileForm').form('submit',{
   url:"········",success:function(data){
     // change the JSON string to javascript object
     var msg = eval('(' + data + ')');
     if (msg.success) {
       alert(1);
     }else{
       alert(2);
     }
   }
 });

java代码

@RequestMapping(params = "addFile")
@ResponseBody
public SuccessMsg addFile(MultipartFile numFile){
    SuccessMsg msg = new SuccessMsg();
    return msg;
}
原文链接:https://www.f2er.com/ajax/162101.html

猜你在找的Ajax相关文章