㈠ js表單提交數據
b.html里這么寫
<form action="a.html" method="get">
<input type="text" name="username" />
<input type="submit" value="post" />
</form>
在文本框輸入一些東西後點下按鈕就可以提交到a.html里了,你也可以看到地回址欄里後面跟了一答串數據:?username=文本里填的東西;
但是要通過js取出這個數據的話,得用到jsp裡面的內置對象 request,調用request.getParameter("username") 就能去到文本框里寫的東西了。所以html文件取不到,得用jsp
㈡ js 提交表單數據: 附件+對象的的多集合
在我們前端進行表單提交的時候,有時候會出現這種情況:Failed to convert java.lang.String to java.util.List
等等。
例如:
我後台定義一個對象:
examPaper 包含 String userId,Float userScore, MultipartFile examFile 用戶id ,試卷分數,試卷文件
對象外面 classPaper有: String classId String className List<examPaper> examPaperList
這個時候,後台接收為 ClassPaper
如果按照平常的 form-data 提交 則應按以下方式提交:
let fd = new FormData();
fd.append("classId ",classId );
fd.append("className ",className );
examPaperList.forEach((item,index) ->{
fd.append("examPaperList["+index+"].userId",item.userId);
fd.append("examPaperList["+index+"].userScore",item.userScore);
fd.append("examPaperList["+index+"].examFile ",item.examFile );
});
以這種方式就可以實現 多附件 一一 對應提交。以避免對象轉換錯誤問題。
㈢ 怎樣用JS實現數據的批量提交
在一個項目中用Excel組件OWC.Spreadsheet在客戶端鏈友導出HTML格式的表格為Excel文件,對於數據量較大的表格導出會造成IE窗口遲喚鏈停止響應,用戶體驗很差。想到三個解決方案: 1、用applet結合jxl實現。暫不考慮。 2、利用類似Ajax請求的機制,非同步調用碼孫一個導出方法,該方法在導出完畢後回調一個callback方法。 3、利用類似Java中的線程機制,直接開一個導出線程即可。
㈣ js 模擬POST提交enctype="multipart/form-data"類型的表單
只是需要文件上傳才用它的
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;");
改成
xmlHttp.setRequestHeader("Content-Type","multipart/form-data;")。