0

我的代码如下:

    [System.Web.Mvc.HttpPost]
    public ActionResult DownloaZipFile([FromBody] int id)
    {
        var result = _service.GetDocuments(id);
        var downloadFileName = $"Report{id}.zip";
        var downloadFilePath = Server.MapPath($"~/Uploads/TempZipDownload/{downloadFileName}");

        if (System.IO.File.Exists(downloadFilePath))
        {
            System.IO.File.Delete(downloadFilePath);
        }

        var zip = ZipFile.Open(downloadFilePath, ZipArchiveMode.Create);

        foreach (var file in result)
        {
            zip.CreateEntryFromFile(Server.MapPath(Path.Combine("~/Uploads/TempImageDownload/" + file.Filename)), file.Filename);
        }

        zip.Dispose();
        return File(downloadFilePath, "application/zip", downloadFileName);
    }

来自组件的 AngularJs 代码:

vm.downloadReport = function(id) {
            service.DownloadReport(id).then(function(response) {

                var file = new Blob([response.data],
                {
                    type: 'application/zip'
                });

                if (navigator.msSaveBlob) {
                    navigator.msSaveBlob(file);
                } else {
                    var fileUrl = URL.createObjectURL(file);
                    console.log(fileUrl);
                    var a = document.createElement('a');
                    a.href = fileUrl;
                    a.download = 'ReportDownload' + id + '.zip';
                    document.body.appendChild(a);
                    a.click();
                }
            });
        }

毕竟代码它正在下载 zip 文件,但是当我试图打开 zip 文件时,它给了我错误。无效的 zip 文件。

请注意,我使用 System.IO.Compression 库来生成和下载 zip 文件。

4

2 回答 2

1

我通过执行以下操作解决了这个问题:

    [System.Web.Mvc.HttpPost]
    public ActionResult DownloaZipFile([FromBody] int id)
    {
        var result = _service.GetDocuments(id);
        var downloadFileName = $"Report{id}.zip";
        var downloadFilePath = Server.MapPath($"~/Uploads/TempZipDownload/{downloadFileName}");

        if (System.IO.File.Exists(downloadFilePath))
        {
            System.IO.File.Delete(downloadFilePath);
        }

        var zip = ZipFile.Open(downloadFilePath, ZipArchiveMode.Create);

        foreach (var file in result)
        {
            zip.CreateEntryFromFile(Server.MapPath(Path.Combine("~/Uploads/TempImageDownload/" + file.Filename)), file.Filename);
        }

        zip.Dispose();
        return Json($"/Uploads/TempZipDownload/{downloadFileName}");
    }

在 AngularJs 代码中:

vm.downloadReport = function(id) {
            service.DownloadReport(id).then(function(response) {
                var a = document.createElement('a');
                a.href = response.data;
                a.download = 'ReportDownload';
                document.body.appendChild(a);
                a.click();
            });
        }

这将在 response.data 中捕获压缩文件 url 并通过 javascript 代码下载它。希望这对其他人也有帮助。

于 2018-04-20T10:14:01.380 回答
0

我认为你可以做window.location.href = response.data而不是创建一个虚拟超链接。有关文档,请参阅https://developer.mozilla.org/en-US/docs/Web/API/Location

window.location.href您还可以通过访问单个操作 URL(例如)将整个事情简化为单个 HTTP 请求,该 URL/downloadZipFile创建 ZIP 文件,然后FileResult立即将其发送以供下载。您甚至可以在内存中创建它而无需将其保存到磁盘。然后,您不需要单独的 AJAX 调用来获取文件的 URL。

于 2021-03-25T09:31:16.657 回答