如何把JSON文件下载到本地
Posted 三水草肃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何把JSON文件下载到本地相关的知识,希望对你有一定的参考价值。
// 创建a标签
var publish_files = document.createElement('a');
//文件的名称为时间戳加文件名后缀
publish_files.download = "file.txt";
publish_files.style.display = 'none';
//生成一个blob二进制数据,内容为json数据
var blob = new Blob($scope.publish_downloadList);
//生成一个指向blob的URL地址,并赋值给a标签的href属性
publish_files.href = URL.createObjectURL(blob);
document.body.appendChild(publish_files);
publish_files.click();
document.body.removeChild(publish_files);
还可以图片下载
<a href="/images/myw3schoolsimage.jpg" download>
以上是关于如何把JSON文件下载到本地的主要内容,如果未能解决你的问题,请参考以下文章