最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - javascript button to download a file - Stack Overflow

programmeradmin3浏览0评论

I want to download a JSON(or XML) file by pressing a button. In HTML I define:

<a id="exportJSON" onclick="exportJson()" class="btn"><i class="icon-download"></i> export json</a>

In JavaScipt I have following code:

function exportJson() {
   var obj = {a: 123, b: "4 5 6"};
   var data = "text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(obj));
   // what to return in order to show download window?
}

I found a very nice answer in Stackoveflow, but I fail to adjust it into my problem, mainly show the download window. I do not want to create another link somewhere in the page (like done in above mentioned answer, just directly show download window).

I want to download a JSON(or XML) file by pressing a button. In HTML I define:

<a id="exportJSON" onclick="exportJson()" class="btn"><i class="icon-download"></i> export json</a>

In JavaScipt I have following code:

function exportJson() {
   var obj = {a: 123, b: "4 5 6"};
   var data = "text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(obj));
   // what to return in order to show download window?
}

I found a very nice answer in Stackoveflow, but I fail to adjust it into my problem, mainly show the download window. I do not want to create another link somewhere in the page (like done in above mentioned answer, just directly show download window).

Share Improve this question asked Oct 16, 2014 at 21:25 BobBob 10.8k25 gold badges65 silver badges72 bronze badges 2
  • 1 Try changing the mime type to application/json – Dave Commented Oct 16, 2014 at 21:36
  • It writes into the file: {"error": "Please use POST request"}. This is wrong! – Bob Commented Oct 17, 2014 at 6:01
Add a ment  | 

1 Answer 1

Reset to default 14

UPDATE

http://jsfiddle/2k4LtaLw/5/

Change your a to this

<a id="exportJSON" onclick="exportJson(this);" class="btn"><i class="icon-download"></i> export json</a>

The function

function exportJson(el) {

    var obj = {
        a: 123,
        b: "4 5 6"
    };
    var data = "text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(obj));
    // what to return in order to show download window?

    el.setAttribute("href", "data:"+data);
    el.setAttribute("download", "data.json");    
}
发布评论

评论列表(0)

  1. 暂无评论