Ajax實(shí)現(xiàn)文件上傳功能(Spring MVC)
本文實(shí)例為大家分享了ajax實(shí)現(xiàn)文件上傳的具體代碼,供大家參考,具體內(nèi)容如下
前端表單 和 jquery jsp/html代碼
使用jqury
<script src="static/js/jquery-3.4.1.js"></script>
前端表單
<form id="form-avatar" enctype="multipart/form-data"> <p>請(qǐng)選擇要上傳的文件:</p> <p><input type="file" name="file" /></p> <p><input id="btn-avatar" type="button" value="上傳" /></p> </form>
ajax請(qǐng)求服務(wù)器
<script> function uploadfile(){ $.ajax({ url : "/url/upload", data: new formdata($("#form-avatar")[0]), type : "post", // 告訴jquery不要去處理發(fā)送的數(shù)據(jù),用于對(duì)data參數(shù)進(jìn)行序列化處理 這里必須false processdata : false, // 告訴jquery不要去設(shè)置content-type請(qǐng)求頭 contenttype : false, success : function(json) { alert("執(zhí)行成功"); }, error : function(json) { alert("執(zhí)行失敗"); } }); } $("#btn-avatar").on("click",uploadfile); </script>
conroller.java
@postmapping("/upload") public void fileupload2(@requestparam("file") commonsmultipartfile file, httpservletrequest request) throws ioexception { system.out.println("走了"); //上傳路徑保存設(shè)置 string path = request.getservletcontext().getrealpath("/upload"); file realpath = new file(path); if (!realpath.exists()) { realpath.mkdir(); } //上傳文件地址 system.out.println("上傳文件保存地址:" + realpath); //通過(guò)commonsmultipartfile的方法直接寫文件(注意這個(gè)時(shí)候) file.transferto(new file(realpath + "/" + file.getoriginalfilename())); }
結(jié)果
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持碩編程。