利用ajax實(shí)現(xiàn)excel報(bào)表導(dǎo)出【解決亂碼問(wèn)題】,供大家參考,具體內(nèi)容如下
背景
項(xiàng)目中遇到一個(gè)場(chǎng)景,要導(dǎo)出一個(gè)excel報(bào)表。由于需要token驗(yàn)證,所以不能用a標(biāo)簽;由于頁(yè)面復(fù)雜,所以不能使用表單提交。初步考慮前端使用ajax,后端返回流,定義指定的header。
第一版
主要代碼
前端
使用jquery的ajax
var queryparams = {"test":"xxx"}; var url = "xxx"; $.ajax({ type : "post", //提交方式 url : url,//路徑 contenttype: "application/json", data: json.stringify(queryparams), beforesend: function (request) { request.setrequestheader("authorization", "xxx"); }, success : function(result) { const blob = new blob([result], {type:"application/vnd.ms-excel"}); if(blob.size < 1) { alert('導(dǎo)出失敗,導(dǎo)出的內(nèi)容為空!'); return } if(window.navigator.mssaveoropenblob) { navigator.mssaveoropenblob(blob, 'test.xls') } else { const alink = document.createelement('a'); alink.style.display = 'none'; alink.href = window.url.createobjecturl(blob); alink.download = 'test.xls'; document.body.appendchild(alink); alink.click(); document.body.removechild(alink); } } });
后端
使用easypoi(如何使用easypoi請(qǐng)自行百度)
import cn.afterturn.easypoi.excel.excelexportutil; import cn.afterturn.easypoi.excel.entity.exportparams; @postmapping(value = "/download") public void downloadlist(@requestbody objct obj, httpservletresponse response) { ...... list<custom> excellist = new arraylist<>(); // excel總體設(shè)置 exportparams exportparams = new exportparams(); // 指定sheet名字 exportparams.setsheetname("test"); workbook workbook = excelexportutil.exportexcel(exportparams, custom.class, excellist); response.setcontenttype("application/vnd.ms-excel"); response.addheader("content-disposition", "attachment;filename=" + urlencoder.encode("test", "utf-8") + ".xls"); outputstream outputstream = response.getoutputstream(); workbook.write(outputstream); outputstream.flush(); outputstream.close(); ...... }
測(cè)試結(jié)果
excel能正常導(dǎo)出,但下載下來(lái)的excel全是亂碼。經(jīng)過(guò)各種找答案,整理了一下可能是以下原因?qū)е拢?/p>
1、后端未設(shè)置字符集,或者在spring框架的過(guò)濾器中統(tǒng)一設(shè)置了字符集;
2、前端頁(yè)面未設(shè)置字符集編碼;
3、需要在ajax中添加 request.responsetype = “arraybuffer”;
經(jīng)過(guò)不斷測(cè)試,我的應(yīng)該是第三點(diǎn)導(dǎo)致。但在jquery ajax 中添加后仍然不起作用,亂碼問(wèn)題始終無(wú)法解決。
第二版
主要代碼
前端,使用原生的ajax。后端未變動(dòng)。
var xhr = new xmlhttprequest(); xhr.responsetype = "arraybuffer"; xhr.open("post", url, true); xhr.onload = function () { const blob = new blob([this.response], {type:"application/vnd.ms-excel"}); if(blob.size < 1) { alert('導(dǎo)出失敗,導(dǎo)出的內(nèi)容為空!'); return; } if(window.navigator.mssaveoropenblob) { navigator.mssaveoropenblob(blob, 'test.xls') } else { const alink = document.createelement('a'); alink.style.display = 'none'; alink.href = window.url.createobjecturl(blob); alink.download = 'testxls'; document.body.appendchild(alink); alink.click(); document.body.removechild(alink); return; } } xhr.setrequestheader("authorization", "xxx"); xhr.setrequestheader("content-type", "application/json"); xhr.send(json.stringify(queryparams));
測(cè)試結(jié)果
下載的excel不再亂碼,原生ajax中使用 “arraybuffer” 使用是生效的。
總結(jié)
“arraybuffer” 這個(gè)參數(shù)導(dǎo)致的excel導(dǎo)出亂碼,在原生的ajax中設(shè)置是有效的,在jquery的ajax中暫時(shí)還沒(méi)找到生效的方式。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持碩編程。