Skip to content

Instantly share code, notes, and snippets.

@cmferreira-352
Last active September 5, 2019 17:51
Show Gist options
  • Save cmferreira-352/725b70fe3df153f19404c23e1b620d15 to your computer and use it in GitHub Desktop.
Save cmferreira-352/725b70fe3df153f19404c23e1b620d15 to your computer and use it in GitHub Desktop.
Trecho de código em js necessário para o download de algum objeto
var file = '{ "teste": "teste" }';
var a = document.createElement("a");
var blob = new Blob([file],{type:"application/json"});
var url = URL.createObjectURL(blob);
a.href = url;
a.download = 'teste.json';
document.body.appendChild(a);
a.click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment