我想在我的MVC应用程序中启用文件下载,而不是简单地使用超链接.我计划使用图像等,并使用jQuery使其可点击.目前我有一个简单的测试.
我找到了通过动作方法进行下载的解释,但遗憾的是该示例仍然有动作链接.
现在,我可以调用下载操作方法,但没有任何反应.我想我必须对返回值做一些事情,但我不知道是什么或如何.
这是动作方法:
public ActionResult Download(string fileName)
{
string fullName = Path.Combine(GetBaseDir(),fileName);
if (!System.IO.File.Exists(fullName))
{
throw new ArgumentException("Invalid file name or file does not exist!");
}
return new BinaryContentResult
{
FileName = fileName,ContentType = "application/octet-stream",Content = System.IO.File.ReadAllBytes(fullName)
};
}
这是BinaryContentResult类:
public class BinaryContentResult : ActionResult
{
public BinaryContentResult()
{ }
public string ContentType { get; set; }
public string FileName { get; set; }
public byte[] Content { get; set; }
public override void ExecuteResult(ControllerContext context)
{
context.HttpContext.Response.ClearContent();
context.HttpContext.Response.ContentType = ContentType;
context.HttpContext.Response.AddHeader("content-disposition","attachment; filename=" + FileName);
context.HttpContext.Response.BinaryWrite(Content);
context.HttpContext.Response.End();
}
}
通过以下方式点击:
$("#downloadLink").click(function () {
file = $(".jstree-clicked").attr("rel") + "\\" + $('.selectedRow .file').html();
alert(file);
$.get('/Customers/Download/',{ fileName: file },function (data) {
//Do I need to do something here? Or where?
});
});
请注意,actionName参数是由action方法正确接收的所有内容,只是没有任何反应,所以我想我需要以某种方式处理返回值?
最佳答案
原文链接:https://www.f2er.com/jquery/427885.html