在 Blazor 中为 SelectPDF 添加文件流(服务器端)
Adding file stream for SelectPDF in Blazor (Server-Side)
我正在尝试将 HTML 代码导出为 PDF。我需要保存到客户端浏览器而不是服务器。我在网上所能找到的就是保存到根目录然后下载到浏览器。如果可能的话,我想避免这一步。
void ExportPDF()
{
SelectPdf.HtmlToPdf converter = new SelectPdf.HtmlToPdf();
SelectPdf.PdfDocument doc = converter.ConvertUrl("https://selectpdf.com");
doc.Save("test.pdf");
doc.Close();
}
查看 documentation,您可以改为保存到 Stream
。所以你的代码是
SelectPdf.HtmlToPdf converter = new SelectPdf.HtmlToPdf();
SelectPdf.PdfDocument doc = converter.ConvertUrl("https://selectpdf.com");
using (var ms = new System.IO.MemoryStream())
{
doc.Save(ms);
doc.Close();
// todo- create response using the data in `ms`
}
由于这是一个Blazor问题,我想问一下这个方法是否在组件内部?如果是这样,则无法在组件内的浏览器上下载文件。您需要在控制器操作和 return 中编写此方法 FileResult
。然后,在 Blazor 组件中,您需要导航到控制器,这将导致浏览器下载文件。
有关详细信息,请参阅 Is there a way to get a file stream to download to the browser in Blazor?
我正在尝试将 HTML 代码导出为 PDF。我需要保存到客户端浏览器而不是服务器。我在网上所能找到的就是保存到根目录然后下载到浏览器。如果可能的话,我想避免这一步。
void ExportPDF()
{
SelectPdf.HtmlToPdf converter = new SelectPdf.HtmlToPdf();
SelectPdf.PdfDocument doc = converter.ConvertUrl("https://selectpdf.com");
doc.Save("test.pdf");
doc.Close();
}
查看 documentation,您可以改为保存到 Stream
。所以你的代码是
SelectPdf.HtmlToPdf converter = new SelectPdf.HtmlToPdf();
SelectPdf.PdfDocument doc = converter.ConvertUrl("https://selectpdf.com");
using (var ms = new System.IO.MemoryStream())
{
doc.Save(ms);
doc.Close();
// todo- create response using the data in `ms`
}
由于这是一个Blazor问题,我想问一下这个方法是否在组件内部?如果是这样,则无法在组件内的浏览器上下载文件。您需要在控制器操作和 return 中编写此方法 FileResult
。然后,在 Blazor 组件中,您需要导航到控制器,这将导致浏览器下载文件。
有关详细信息,请参阅 Is there a way to get a file stream to download to the browser in Blazor?