ajax 가 백 엔 드 에 제출 한 데 이 터 를 성공 적 으로 해결 하 였 으 나 success 를 가지 않 고 가 는 error 문 제 를 되 돌려 줍 니 다.
$("#sourcefile").ajaxSubmit({
type: "post",
dataType: "json", // 'xml', 'script', or 'json' (expected server response type)
url: "/springMVC/upload/up",
success: function (result) {
if (result) {
alert(result.col0);
}
},
error:function(data, XMLHttpRequest, textStatus, errorThrown){
alert(1);
}
});
@RequestMapping(value="/upload/up")
public @ResponseBody ExcelName upload(@RequestParam("sourceFile") MultipartFile sourceFile, HttpServletRequest request, ModelMap model,HttpServletResponse response) {
//
if (sourceFile==null) return null;
//
String name=sourceFile.getOriginalFilename();
System.out.println("name");
// ( 0 null)
long size =sourceFile.getSize();
if (name==null ||("").equals(name) && size==0) return null;
// 。 : , 。
List<ExcelName> cpolicyList = ExcelUtils.batchImport(name,sourceFile);
// ( : cpolicyList , Mybatis foreach 。)
for( ExcelName customer:cpolicyList){
colDataService.insertData(customer);
}
ExcelName e1=new ExcelName();
e1.setCol0("success");
return e1;
}
나중에 추적 백 엔 드 를 누 르 면 버튼 type 을 submit 로 올 려 서 action 을 제출 했 기 때문에 ajax 가 되 돌아 오 는 결 과 를 얻 지 못 하고 error 를 가 져 갔 습 니 다.다음은 올 바른 jsp 수정 입 니 다.
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> </title>
<script type="text/javascript" src="./jquery-3.1.1.js"></script>
<script type="text/javascript" src="./jquery.form.js"></script>
<script type="text/javascript">
function submitImport(){
var epath = $('#source_file').val();
if(epath==""){
alert( ' !');
return;
}
if (epath.substring(epath.lastIndexOf(".") + 1).toLowerCase()!="xlsx") {
alert( ' excel!');
return;
}
$("#sourcefile").ajaxSubmit({
type: "post",
dataType: "json", // 'xml', 'script', or 'json' (expected server response type)
url: "/springMVC/upload/up",
success: function (result) {
if (result) {
alert(result.col0);
}
},
error:function(data, XMLHttpRequest, textStatus, errorThrown){
alert(1);
}
});
}
//partExport
function downloadTemplate() {
document.sourcefile.action = "/springMVC/upload/partExport";
form.submit(); //
}
</script>
</head>
<body>
<div>
<form id="sourcefile" name="sourcefile" action="" method="post" enctype="multipart/form-data">
<input type="button" value=" " onClick="addAirLine()" />
<input style="margin-left: 20px;" id="source_file" name="sourceFile" type="file" value=" " />
<input style="margin-left: 20px;" data-loading-text=" " type="button" value=" " onClick="submitImport()">
<input style="margin-left: 20px;" type="submit" value=" " onClick="downloadTemplate();">
</form>
</div>
</body>
</html>
이상 은 ajax 가 백 엔 드 에 제출 한 데 이 터 를 성공 적 으로 해결 하 였 으 나 success 로 돌아 가지 않 고 가 는 error 문 제 는 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.참고 하 시기 바 랍 니 다.여러분 들 도 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Javascript Ajax에 대한 간단한 연습저는 약 4년 동안 프로그래밍 개인 튜터로 일한 경험이 있습니다. 약 5년 전에 " "이라는 제목의 페르시아어로 내 웹사이트에 블로그 게시물을 올렸고 사람들이 저에게 전화하기 시작했습니다. 나는 항상 사람들을 가르치...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.