我有一个简单的网络应用程序,它允许下载文件。
该文件被正确下载,但是浏览器从不指示接收到的数据量(即进度)。
下载动作的实现如下 - 现在,只需打开读取本地文件并将流作为文件结果返回。
public async Task<IActionResult> Download(string id)
{
var project = await this.service.GetById(id).ConfigureAwait(false);
if (project == null)
{
return this.NotFound($"Project [{id}] does not exist");
}
var file = new FileInfo(project.DownloadLocation);
this.Response.ContentLength = file.Length;
return this.File(file.OpenRead(), "application/octet-stream", file.Name);
}
下载由一个简单的操作链接触发:
<dd class="project-path">@Html.ActionLink("Here", "Download", "Download", new { id = Model.Id})</dd>
知道为什么 Chrome/Firefox 从不显示下载进度吗?