[removed] Download data to file from content within the page

后端 未结 8 1562
时光说笑
时光说笑 2020-12-13 14:35

setting is the following: I have a homepage where I display a diagram that has been constructed using comma seperated values from within the page. I\'d like to give users th

8条回答
  •  萌比男神i
    2020-12-13 14:40

    HTML:

    Download
    

    JavaScript:

    function onDownload() {
        document.location = 'data:Application/octet-stream,' +
                             encodeURIComponent(dataToDownload);
    }
    

    Taken from How to Download Data as a File From JavaScript

提交回复
热议问题