将 Excel 文件导出到视图 (MVC)

发布于 2024-12-07 18:01:59 字数 681 浏览 0 评论 0原文

我必须导出数据以Excel形式查看,实际上我已经实现了,但我的疑问是什么时候 使用

return new FileContentResult(fileContents, "application/vnd.ms-excel");

return File(fileContents, "application/vnd.ms-excel");

以及如何在每个方法中设置可下载文件名?

示例 1:

public ActionResult ExcelExport()
{
   byte[] fileContents = Encoding.UTF8.GetBytes(data);
   return new FileContentResult(fileContents, "application/vnd.ms-excel");
}

示例:2

public ActionResult ExcelExport()
{
   byte[] fileContents = Encoding.UTF8.GetBytes(data);
   return File(fileContents, "application/vnd.ms-excel");
}

I have to Export Data to View as Excel , Actually I have Implemented,but my doubt is when
to use

return new FileContentResult(fileContents, "application/vnd.ms-excel");

vs

return File(fileContents, "application/vnd.ms-excel");

and How can set Downloadable Filename in each of this methods?

Example 1:

public ActionResult ExcelExport()
{
   byte[] fileContents = Encoding.UTF8.GetBytes(data);
   return new FileContentResult(fileContents, "application/vnd.ms-excel");
}

Example:2

public ActionResult ExcelExport()
{
   byte[] fileContents = Encoding.UTF8.GetBytes(data);
   return File(fileContents, "application/vnd.ms-excel");
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沐歌 2024-12-14 18:01:59

您可以阅读有关 FileContentResult 和 FileContentResult 之间的差异的信息。此处的 FileResult : 之间有什么区别ASP.NET MVC 中的四个文件结果

您可以像这样指定文件名

return new FileContentResult(fileContents, "application/vnd.ms-excel") { FileDownloadName = "name.xls" };

// or

// note that this call will return a FileContentResult object
return new File(fileContents, "application/vnd.ms-excel", "name.xls");

You can read about the differences between FileContentResult & FileResult here : What's the difference between the four File Results in ASP.NET MVC

You can specify the filename like this

return new FileContentResult(fileContents, "application/vnd.ms-excel") { FileDownloadName = "name.xls" };

// or

// note that this call will return a FileContentResult object
return new File(fileContents, "application/vnd.ms-excel", "name.xls");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文