前端下载文件
程序员文章站
2022-05-13 09:50:22
...
//保存文件
saveData:function(){
var that = this
var name = that.fileleftname
let difffile = that.difffile
difffile = difffile.replace(/\"/g,"")
difffile = difffile.replace(/</g,that.fileleftname1+" ")
difffile = difffile.replace(/>/g,that.filerightname1+" ")
difffile = difffile.replace(/---/g,"----------------------------------------------------------------------------------------------------------------------------------------------------------")
console.log(difffile)
// 建立a标签
var elementA = document.createElement(‘a’);
//文件的称号为时候戳加文件名后缀
elementA.download = name+“文件差异” + “.txt”;
elementA.style.display = ‘none’;
//天生一个blob二进制数据,内容为json数据
var blob = new Blob([difffile], {type: “text/plain;charset=utf-8”});
console.log(URL.createObjectURL(blob))
//天生一个指向blob的URL地点,并赋值给a标签的href属性
elementA.href = URL.createObjectURL(blob);
document.body.appendChild(elementA);
elementA.click();
document.body.removeChild(elementA);
}
上一篇: .Net MVC生成图形验证码
下一篇: ASP.NET验证码
推荐阅读
-
SQL Server 数据库本地备份文件通过OSS工具上阿里云(恢复还原数据库)
-
php读取文件内容的三种方式转
-
解决Python运行文件出现out of memory框的问题
-
Win10通用应用奇妙清单Wunderlist 公测版下载
-
C#配置文件configSections详解
-
Paypal线下支付模块,附下载地址_PHP教程
-
【转载】C#指定文件夹下面的所有内容复制到目标文件夹下面
-
使用 Reek 检查 feature branch 相关文件的 code smell
-
linux下用tar命令将当前目录下文件按子目录压缩归档的实现
-
phpmyadmin配置文件现在需要一个短语密码_PHP教程