gpt4 book ai didi

javascript - 将 ajax 响应保存到文件

转载 作者:行者123 更新时间:2023-11-28 07:16:38 25 4
gpt4 key购买 nike

假设我有以下按钮代码:

Ext.create('widget.button', {
handler: function () {
Ext.Ajax.request({
method: 'POST',
url: 'index.php?r=store/exportXLS',
params: {
queryName: me.exporting.name,
queryGroups: Ext.JSON.encode(me.exporting.groups)
},
success: function (response) {
//???
}
});
},
dock: 'top',
text: 'Экспорт в XLS'
});

因为 groups 变量包含太多参数,我必须通过 POST 发送所有数据。操作“store/exportXLS”返回有效的 html,我想将其另存为 XLS。我无法使用 window.open() 因为这些窗口每次都会被阻止。那么,问题:是否可以将 response.responseText 保存为文件? (在我的例子中是 Excel)

更新:按照您的要求,我发布了 html。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns:o="urn:schemas-microsoft-com:office:office"

xmlns:x="urn:schemas-microsoft-com:office:excel"

xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="application/excel; charset=utf-8"/>
<title>hideshow</title>
</head>
<body>
<table border="1">
<thead>
<tr style="font-weight: bold">
<td>Пациент</td><td>Лекарственное средство</td>
</tr>
</thead>
<tbody>
<tr><td>Ажыфорафо А.В. <br />№ истории болезни: Х-34<br /></td><td>Аминокапроновая к-та р-р д/инф.5% фл.100мл Белмедпрепараты РУП,Республика Беларусь<br />Срок годности: 2016-01-01<br />Стоимость: 52.4700000<br />ЛС ОТМЕНЕНО<br /></td></tr>
</tbody>
</table>
</body>
</html>

使用 PHP,我设置 header 如下:

header("Content-Type: application/excel; charset=UTF-8");
header("Content-Disposition: attachment; filename=journal.xls");

最佳答案

您的 HTML 对于 Excel 无效。您应该需要表格标签。为此,您可以使用函数 split :

 var str = response.split('<table border="1">');
strTmp = str[1].split('</table>');
var html = '<table border="1">' + strTmp[0] + '</table>';

当您的 html 有效时,您可以使用以下代码:

JS

var url='data:application/vnd.ms-excel,' + escape(html) ; 
var link = document.getElementById("downloadLink");
link.setAttribute("href", url);
link.setAttribute("download", "export.xls");
link.click();

HTML

<a id="downloadLink" href="" style="display: none;">

关于javascript - 将 ajax 响应保存到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30776593/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com