Export json to json file

前端 未结 1 1515
醉酒成梦
醉酒成梦 2021-01-28 10:48

I am trying to export a json to file using html and js.

This is my code:

name:
相关标签:
1条回答
  • 2021-01-28 11:39

    I think you want to download a file with the json as content right?

    FileSaver.js makes this easy: https://github.com/eligrey/FileSaver.js/

    var json = "YOU JSON";
    var blob = new Blob([json], {type:"application/json;charset=utf-8"});
    FileSaver.saveAs(blob, "export.sjon");

    0 讨论(0)
提交回复
热议问题