0

我们使用 ASP.NET MVC 4(演示)、WCF(逻辑)、Azure Blob 存储(存储)。

是否可以在不冻结网站导航的情况下实现流下载(通过)?

我们确实需要“通过”,因为需要自定义标头(Content-Disposition 等)。这意味着 FilePathResult 和直接链接到 Azure 是不可能的。

现在下载是通过这种方式实现的:

[HttpGet]
public ActionResult DownloadTemplate(Guid templateId)
{
    Response.Clear(); Response.BufferOutput = false;

    DownloadResult result = Client.DownloadTemplate(templateId)

    Response.AddHeader("Content-Type", MimeHelper.GetMimeType(result.FileName));
    Response.AddHeader("Content-Disposition", "attachment; filename=" + result.FileName);

    byte[] buffer = new byte[4096]; int readed = 0;

    while ((readed = result.ContentStream.Read(buffer, 0, buffer.Length)) > 0)
    {
        if (Response.IsClientConnected)
        {
            Response.OutputStream.Write(buffer, 0, readed);
            Response.Flush();
        }
    }

    return new EmptyResult();
} 
4

2 回答 2

0

通过在存储抽象和浏览器之间添加代理 WCF REST 文件服务来解决。

于 2013-09-11T10:31:09.093 回答
0

也许您的按钮应该在控制器中对您的 Web 方法进行 javascript ajax 调用。

于 2013-09-09T15:05:31.960 回答