我很难完成一个本来很容易的任务,而且我不知道自己做错了什么还是不得不在其他地方寻找问题。基本上我有我的javascript POST请求:
$.ajax(
{
url: "/upload",
type: "POST",
data: formData,
cache: false,
contentType: false,
processData: false,
success: function (data) {
stopUpdatingProgressIndicator();
}
}
);
}
var intervalId;
function startUpdatingProgressIndicator() {
$("#progress").show();
$.post(
"/upload/progress",
function (progress) {
}
);
并且在我的控制器中,我通过这种方式提供文件:
return File(fileMod, System.Net.Mime.MediaTypeNames.Application.Octet, "test.mod");
但是什么也没有发生,没有文件可供下载,fileMod是一个简单的字节数组,并且没有显示错误。
编辑 我还尝试将“返回文件” 中的内容类型设置为“应用程序/强制下载” 。
答案 0 :(得分:0)
这是一个非常简单的控制器操作示例,该操作从数据库加载文件信息(路径,名称等),然后从磁盘加载该文件。
[HttpGet]
public IActionResult DownloadFile(Guid fileId)
{
var file = _context.Files.FirstOrDefault(x => x.Id == fileId);
if (file == null)
{
return ...
}
// you may also want to check permissions logic
// e.g if (!UserCanDownloadFiles(user)) { return ... }
var bytes = File.ReadAllBytes(file.PhysicalPath)); // add error handling here
return new FileContentResult(bytes, "application/octet-stream") { FileDownloadName = file.FriendlyName }
}
实质路径=例如C:\AppFiles\file.jpg
FriendlyName =例如file.jpg
您可能需要阅读以下内容:https://en.wikipedia.org/wiki/Media_type
示例下载:
<a class="text-info" href="@Url.Action("DownloadFile", "MyController", new { fileId = item.Id })">Download</a>