angularJS通過post方法下載excel檔案

來源:互聯網
上載者:User

標籤:xlsx   reads   使用   相容   creat   ati   openxml   老版本   .sh   

最近工作中遇到,要使用angularJS的post方法來下載excel的情況。網上找到一個文章:http://stackoverflow.com/questions/22447952/angularjs-http-post-convert-binary-to-excel-file-and-download ,改動了裡面部分代碼搞定。

詳細代碼:

            $http.post($rootScope.restful_api.last_output_excel,body_data,{responseType: ‘arraybuffer‘}).success(function(data){                var blob = new Blob([data], {type: "application/vnd.ms-excel"});                var objectUrl = URL.createObjectURL(blob);                var aForExcel = $("<a><span class=‘forExcel‘>下載excel</span></a>").attr("href",objectUrl);                $("body").append(aForExcel);                $(".forExcel").click();                aForExcel.remove();            })

 

經驗總結:

1.post的方法裡要加responseType: ‘arraybuffer‘參數,不然下載的excel會亂碼(這點一開始沒注意到,費力好久)

2.使用{type: "application/vnd.ms-excel"}的寫法,可以儲存為xls格式的excel檔案(相容老版本)。而使用“application/vnd.openxmlformats-officedocument.spreadsheetml.sheet”則會儲存為xlsx

3.使用增加節點調用click方法,而不使用文章中的window.open(objectUrl)方法,是防止被瀏覽器當外掛程式屏蔽彈出串連


angularJS通過post方法下載excel檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.