前端自动生成下载文件

90 阅读1分钟
   loadFile(fileName, content){ // 前端自动生成下载文件
			var aLink = document.createElement('a');
			var blob = new Blob([content], {
				type: 'text/plain'
			});
			aLink.download = fileName;
			aLink.href = URL.createObjectURL(blob);
			aLink.click();
			URL.revokeObjectURL(blob);
		}