是否有一种下载文件的方法,该文件是在 Blazor 服务器端中在内存中动态生成的 而不需要存储在文件系统上的?
答案 0 :(得分:6)
解决方案是在Blazor服务器端应用程序中添加 Web Api contoller。
Controllers/DownloadController.cs
控制器添加到Blazor应用程序的根目录:[ApiController, Route("api/[controller]")]
public class DownloadController : ControllerBase {
[HttpGet, Route("{name}")]
public ActionResult Get(string name) {
var buffer = Encoding.UTF8.GetBytes("Hello! Content is here.");
var stream = new MemoryStream(buffer);
//var stream = new FileStream(filename);
var result = new FileStreamResult(stream, "text/plain");
result.FileDownloadName = "test.txt";
return result;
}
}
Startup.cs
以支持控制器路由:public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
...
app.UseRouting();
app.UseEndpoints(endpoints => {
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller}/{action}");
endpoints.MapControllers();
endpoints.MapBlazorHub();
endpoints.MapFallbackToPage("/_Host");
});
}
答案 1 :(得分:0)
在 Blazor 中创建一个 cshtml 页面,如下所示。
FileDownload.cshtml.cs:
public class FileDownloadsModel : PageModel
{
public async Task<IActionResult> OnGet()
{
byte[] fileContent = ....;
return File(fileContent, "application/force-download", "test.txt");
}
}
FileDownload.cshtml:
@page "/download/{object}/{id:int}/{fileType}"
@model GFProdMan.Pages.FileDownloadsModel
仅此而已。