這篇文章將為大家詳細講解有關怎么在jQuery中使用FormData上傳文件,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
堅守“ 做人真誠 · 做事靠譜 · 口碑至上 · 高效敬業(yè) ”的價值觀,專業(yè)網站建設服務10余年為成都玻璃鋼坐凳小微創(chuàng)業(yè)公司專業(yè)提供企業(yè)網站制作營銷網站建設商城網站建設手機網站建設小程序網站建設網站改版,從內容策劃、視覺設計、底層架構、網頁布局、功能開發(fā)迭代于一體的高端網站建設服務。
jquery是一個簡潔而快速的JavaScript庫,它具有獨特的鏈式語法和短小清晰的多功能接口、高效靈活的css選擇器,并且可對CSS選擇器進行擴展、擁有便捷的插件擴展機制和豐富的插件,是繼Prototype之后又一個優(yōu)秀的JavaScript代碼庫,能夠用于簡化事件處理、HTML文檔遍歷、Ajax交互和動畫,以便快速開發(fā)網站。
JQuery 函數(shù)的提交按鈕執(zhí)行的函數(shù)如下:
需要注意的是以下兩點:
jQuery 的 ajax 中processData設置為false (表示不需要對數(shù)據做處理)
jQuery 的 ajax 中contentType設置為false (因為前面已經聲明了是‘FormData對象')
Controller 中的方法如下:
@ApiOperation(value = "批量上傳題庫") @RequestMapping(value = "/batchUpload",method = RequestMethod.POST) public void batchUploadQuestions(HttpServletRequest request) throws Exception{ Collectionfiles = request.getParts(); questionsService.batchUploadQuestions(files); }
Service中的方法如下:
//題庫的批量上傳 @Override public void batchUploadQuestions(Collectionfiles) throws Exception { Iterator it = files.iterator(); Part file = it.next(); Workbook workbook = null; if (file.getSubmittedFileName().endsWith("xlsx")) { workbook = new XSSFWorkbook(file.getInputStream()); } else if (file.getSubmittedFileName().endsWith("xls")) { workbook = new HSSFWorkbook(file.getInputStream()); } Cell cell = null; List questionsList = new ArrayList<>(); //判斷Excel中有幾張表,目前設定為一張表 Sheet sheet = workbook.getSheetAt(0);//獲取sheet表 for (int rowIndex = 2; rowIndex <= sheet.getLastRowNum(); rowIndex++) { //獲取到一行 Row row = sheet.getRow(rowIndex); if (row == null) { continue; } Questions questions = new Questions(); List strList = new ArrayList<>(); for (int i = 1; i < row.getLastCellNum(); i++) { //獲取到一列,第一列為序號不需要存入數(shù)據庫,所以從1開始讀 cell = row.getCell(i); String value = ""; switch (cell.getCellTypeEnum()) { case _NONE: break; case STRING: value = cell.getStringCellValue(); break; case NUMERIC: Pattern points_ptrn = Pattern.compile("0.0+_*[^/s]+"); if (DateUtil.isCellDateFormatted(cell)) {//日期 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); value = sdf.format(DateUtil.getJavaDate(cell.getNumericCellValue())); } else if ("@".equals(cell.getCellStyle().getDataFormatString()) || "General".equals(cell.getCellStyle().getDataFormatString()) || "0_".equals(cell.getCellStyle().getDataFormatString())) { //文本 or 常規(guī) or 整型數(shù)值 DecimalFormat df = new DecimalFormat("0"); value = df.format(cell.getNumericCellValue()); } else if (points_ptrn.matcher(cell.getCellStyle().getDataFormatString()).matches()) {//正則匹配小數(shù)類型 value = String.valueOf(cell.getNumericCellValue());//直接顯示 } break; default: value = cell.toString(); } if ((i == 2 || i == 3) && value.equals("")) {//此處設計不需要讀入的單元格 strList.clear(); break; } strList.add(value); } if (strList.size() == 9) { //對應數(shù)據庫屬性進行存儲 questions.setChapter(strList.get(0)); questions.setSection(strList.get(1)); questions.setType(strList.get(2)); questions.setQuestion(strList.get(3)); questions.setAnswerA(strList.get(4)); questions.setAnswerB(strList.get(5)); questions.setAnswerC(strList.get(6)); questions.setAnswerD(strList.get(7)); questions.setAnswerTrue(strList.get(8)); questionsList.add(questions); } } //將前臺存進的teacherId也當做文件進行讀取 Part file1 = it.next(); InputStream inputStream = file1.getInputStream(); BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream)); String line = null; String teacherId = ""; while ((line = bufferedReader.readLine()) != null) { teacherId = line; } //將前臺傳入的courseId當做文件讀取 Part file2 = it.next(); InputStream inputStream1 = file2.getInputStream(); BufferedReader bufferedReader1 = new BufferedReader(new InputStreamReader(inputStream1)); String line1 = null; String courseId = ""; while ((line1 = bufferedReader1.readLine()) != null) { courseId = line1; } batchSaveQuestionList(teacherId, courseId, questionsList); } //SQL 語句拼接后傳入DAO層進行數(shù)據插入 public void batchSaveQuestionList(String teacherId,String courseId,List questionsList){ String sql = "replace into questions(questionId,courseId,teacherId,chapter,section,type,question,answerA,answerB,answerC,answerD,answerTrue) values"; for(int i = 0;i DAO層的數(shù)據插入語句:
@Insert("${sql}") void batchSaveQuestionList(@Param("sql") String sql);關于怎么在jQuery中使用FormData上傳文件就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
分享名稱:怎么在jQuery中使用FormData上傳文件
鏈接URL:http://weahome.cn/article/pooopg.html