我有一个Blazor WASM托管的应用程序,它有一个接受主体中模型的API端点。控制器然后将模型的属性转换为PDF并返回FileStreamResult。
由于我有请求正文内容,所以它必须是HttpPost方法;然而,我只看到过使用HttpGet调用下载的示例。
目前,我只得到响应内容中的pdf二进制数据。我可以使用此设置触发浏览器下载吗?或者我需要手动将byte[]
转换为客户端上的文件吗?
服务器控制器:
[HttpPost("DownloadPdf")]
public async Task<FileStreamResult> DownloadPdf(DownloadPdfModel model)
{
try
{
var title = $"{model.Id}-{model.Description}";
var filename = $"{title}.pdf";
var doc = await _pdfService.HtmlToPdf(model.Html);
return File(doc.Stream, "application/pdf", filename);
}
catch (Exception)
{
return null;
}
}
客户端Http服务:
public async Task DownloadPdf(DownloadPdfModel model)
{
var content = new StringContent(JsonConvert.SerializeObject(model), System.Text.Encoding.UTF8, "application/json");
using var response = await _httpClient.PostAsync("api/FooBar/DownloadPdf", content);
response.EnsureSuccessStatusCode();
var result = await response.Content.ReadAsStreamAsync();
// Can I invoke the browser download here or manually using System.IO?
}
您可以使用此软件包:https://github.com/arivera12/BlazorDownloadFile.这里有一些示例代码,httpResponseMessage是来自包含文件内容的服务器的响应;下载";在我的情况下,它是浏览器中的Excel文件。
if (httpResponseMessage.IsSuccessStatusCode)
{
byte[] bytes = await httpResponseMessage.Content.ReadAsByteArrayAsync();
await BlazorDownloadFileService.DownloadFile("filename.xlsx",
bytes,
contentType: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
}