这个问题让我发疯。
我想导出由iTextSharp生成的pdf报告。
我有一个ASP.NET Web API项目,我的代码可以生成PDF文件。
我使用jQuery使用jQuery调用API来发送一些参数,根据这些过滤器获取查询结果并导出它们。
IE和FireFox上的一切正常。当涉及大于5MB的文件时,问题与Google Chrome有关。该过程结束但我得到了#34;下载失败 - 网络错误"来自铬。
当字节数组正确返回时,问题似乎与javascript部分更相关。
对此有任何帮助吗?
我的ASP.NET Web Api方法代码:
[HttpPost]
public byte[] ExportPDFRequestsList(RequestFilter filter)
{
//Method contains the logic of export that has no issues
return RequestsService.ExportPDFRequestsList(filter);
}
我的javascript代码下载文件:
$.when(
//jQuery ajax post method -- works fine
AppObj.JsonCall("Post", exportPDFRequestsListUrl, true, parameter)
).then(function (response) {
var newdata = "data:application/pdf;base64," + escape(response);
var a = document.createElement("a");
//build download link:
a.href = newdata;
a.setAttribute("download", "Requests.pdf");
document.body.appendChild(a);
setTimeout(function () {
var e = document.createEvent("MouseEvents");
e.initMouseEvent("click", true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null
);
a.dispatchEvent(e);
document.body.removeChild(a);
}, 999);
});