{"id":479,"date":"2021-06-08T21:37:30","date_gmt":"2021-06-08T20:37:30","guid":{"rendered":"https:\/\/www.oliver-frick.ch\/?p=479"},"modified":"2021-06-08T21:37:30","modified_gmt":"2021-06-08T20:37:30","slug":"download-data-from-localstorage","status":"publish","type":"post","link":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/2021\/06\/08\/download-data-from-localstorage\/","title":{"rendered":"download data from localStorage"},"content":{"rendered":"<pre>var json = localStorage.getItem('theData');\r\nvar blob = new Blob([json], {type: \"application\/json\"});\r\nvar url = URL.createObjectURL(blob);\r\n\r\nvar a = document.createElement('a');\r\na.download = \"backup.json\";\r\na.href = url;\r\na.textContent = \"Download backup.json\";\r\n\r\n($ == undefined ) ? document.body.appendChild(a) : $(\"body\").append(a);<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>var json = localStorage.getItem(&#8218;theData&#8216;); var blob = new Blob([json], {type: &#8222;application\/json&#8220;}); var url = URL.createObjectURL(blob); var a = document.createElement(&#8218;a&#8216;); a.download = &#8222;backup.json&#8220;; a.href = url; a.textContent = &#8222;Download backup.json&#8220;; ($ == undefined ) ? document.body.appendChild(a) : $(&#8222;body&#8220;).append(a);<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-479","post","type-post","status-publish","format-standard","hentry"],"_links":{"self":[{"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/479","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/comments?post=479"}],"version-history":[{"count":2,"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/479\/revisions"}],"predecessor-version":[{"id":481,"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/479\/revisions\/481"}],"wp:attachment":[{"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/media?parent=479"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/categories?post=479"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oliver-frick.ch\/wordpress\/index.php\/wp-json\/wp\/v2\/tags?post=479"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}