Skip to content

Instantly share code, notes, and snippets.

@ymdx
Created December 18, 2017 15:05
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ymdx/10e7985b3a59491f32f5bf2ec5ba75d7 to your computer and use it in GitHub Desktop.
Save ymdx/10e7985b3a59491f32f5bf2ec5ba75d7 to your computer and use it in GitHub Desktop.
How to download CSV File from HttpResponse with Ajax
success: function(data) {
var blob=new Blob([data]);
var link=document.createElement('a');
link.href=window.URL.createObjectURL(blob);
link.download="<FILENAME_TO_SAVE_WITH_EXTENSION>";
link.click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment