首页 > 编程语言 > 详细

spring mvc 用ajaxSubmit 在iE8上传文件变下载的问题

时间:2015-12-30 17:24:27      阅读:306      评论:0      收藏:0      [点我收藏+]

前端代码

<form method="post" enctype="multipart/form-data" id="cooperatorIdentityBackPhotoForm">
<label class="Con_Label">法人身份证反面</label>
<div class="Con_Input">
<input type="file" id="IdDn" class="file" size="1"
onchange="FileValue(this.id)" name="cooperatorIdentityBackPhoto"> <input type="button"
id="IdDn1" value="浏览" class="file_button" name="cooperatorIdentityBackPhoto"/>
<input type="button" value="上传" class="file_button2" id="uploadCooperatorIdentityBackPhoto">
</div></form>

<script>

$("#cooperatorIdentityBackPhotoForm").ajaxSubmit({
url: "<c:url value=‘/uploadCooperatorIdentityBackPhoto‘/>",
dataType: "json",//指定格式
success: function(data) {
if(data.success){

}else{
alert(data.msg);
}
},
error: function() {
alert("上传失败,请重新上传!");
},
});

</script>

后台代码

//用的是import com.fasterxml.jackson.databind.ObjectMapper;

 

@RequestMapping(value = "/uploadCooperatorBussessPhoto", method = RequestMethod.POST, produces = "text/html; charset=UTF-8")//指定返回格式
@ResponseBody
public String uploadInspectorIdentityNoPhoto(
@RequestPart("cooperatorBussessPhoto") MultipartFile cooperatorBussessPhoto)
throws IOException {
Map<String, Object> map = new HashMap<String, Object>();


map.put("url", "success");
return mapper.writeValueAsString(map);//将map对象转为json
}

 

spring mvc 用ajaxSubmit 在iE8上传文件变下载的问题

原文:http://www.cnblogs.com/caoyilong/p/5089263.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!