Angularjs to download Excel files via the Post method

Source: Internet
Author: User

Recently encountered in the work, to use the Angularjs post method to download the case of Excel. Find a post online: http://stackoverflow.com/questions/22447952/ Angularjs-http-post-convert-binary-to-excel-file-and-download, changed the inside part of the code to fix.

Detailed code:

$http. Post ($rootScope. restful_api.last_output_excel,body_data,{responsetype: ' Arraybuffer '}). Success (function(data) {varBlob =NewBlob ([data], {type: "Application/vnd.ms-excel"}); varObjecturl =Url.createobjecturl (BLOB); varAforexcel = $ ("<a><span class= ' forexcel ' > Download excel</span></a>"). attr ("href", Objecturl); $("Body"). Append (Aforexcel); $(". Forexcel"). Click ();            Aforexcel.remove (); })

Experience Summary:

1.post method to add Responsetype: ' arraybuffer ' parameter, otherwise the download of Excel will be garbled (this is not noticed at first, laborious for a long time)

2. Using {type: "Application/vnd.ms-excel"}, you can save the Excel file in XLS format (older version compatible). The use of "Application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" is saved as xlsx

3. Use the Add node to call the click Method, instead of using the window.open (Objecturl) method in the post, is to prevent the browser when the plug-in screen popup connection

Angularjs to download Excel files via the Post method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.