美文网首页
将浏览器js中数据导出为文件

将浏览器js中数据导出为文件

作者: kingloongMagic | 来源:发表于2022-01-05 14:47 被阅读0次
    (function(console){
    console.save = function(data, filename){
    if(!data) {
    console.error('Console.save: No data')
    return;
    }
    if(!filename) filename = 'console.json'
    if(typeof data === "object"){
    data = JSON.stringify(data, undefined, 4)
    }
    var blob = new Blob([data], {type: 'text/json'}),
    e = document.createEvent('MouseEvents'),
    a = document.createElement('a')
    a.download = filename
    a.href = window.URL.createObjectURL(blob)
    a.dataset.downloadurl = ['text/json', a.download, a.href].join(':')
    e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null)
    a.dispatchEvent(e)
    }
    })(console)
    
    console.save(itemList, "button.json");
    

    相关文章

      网友评论

          本文标题:将浏览器js中数据导出为文件

          本文链接:https://www.haomeiwen.com/subject/rnahcrtx.html