gpt4 book ai didi

c# - 如何显示打开/保存对话框 asp net mvc 4

转载 作者:数据小太阳 更新时间:2023-10-29 05:10:37 27 4
gpt4 key购买 nike

我可以请求一个文件并返回它。我不知道如何显示打开/保存对话框。

查看:

function saveDocument() {
$.ajax({
url: '/Operacao/saveDocument',
type: 'POST',
DataType: "html",
success: function (data) {
//I get the file content here
}
});
}

Controller :

public void saveDocument() {
Response.ContentType = "image/jpeg";
Response.AppendHeader("Content-Disposition", "attachment; filename=SailBig.jpg");
Response.TransmitFile(Server.MapPath("~/MyPDFs/Pdf1.pdf"));
Response.End();
}

最佳答案

我认为您不能在浏览器中异步下载文件,只需将用户重定向到该操作,浏览器就会打开一个保存对话框窗口。在 asp.net mvc 中,您可以使用基本 Controller 的 File 方法下载文件,从而生成 FileResult

public ActionResult SaveDocument()
{
string filePath = Server.MapPath("~/MyPDFs/Pdf1.pdf");
string contentType = "application/pdf";

//Parameters to file are
//1. The File Path on the File Server
//2. The content type MIME type
//3. The parameter for the file save by the browser

return File(filePath, contentType, "Report.pdf");
}

关于c# - 如何显示打开/保存对话框 asp net mvc 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14139316/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com