gpt4 book ai didi

asp.net-mvc - 在MVC中使用Rotativa pdf显示动态标题

转载 作者:行者123 更新时间:2023-12-02 02:33:30 26 4
gpt4 key购买 nike

我想打印来自 Controller 的动态标题数据。

那么如何使用 Rotativa pdf 在标题中显示动态数据。

我的 header 数据包括姓名、地址、联系信息和其他附加信息,这些信息是动态的并从 Controller 端生成。

我使用 html 页面创建了带有静态标题的 pdf,如下所示

string header = Server.MapPath("~/Static/NewFolder/PrintHeader.html");
string footer = Server.MapPath("~/Static/NewFolder/PrintFooter.html");

string customSwitches = string.Format("--header-html \"{0}\" " +
"--header-spacing \"0\" " +
"--footer-html \"{1}\" " +
"--footer-spacing \"10\" " +
"--footer-font-size \"10\" " +
"--header-font-size \"10\" ", header, footer);

return new ViewAsPdf("SchedulePrintPdf", modelData)
{
CustomSwitches = customSwitches,
PageOrientation = Orientation.Portrait,
PageMargins = { Top = 20, Bottom = 22 },
SaveOnServerPath = filePath, FileName = Path.GetFileName(fileName)
};

这与静态 header 配合得很好。

现在我需要标题文本动态地从此 Controller 中发出。

最佳答案

我曾经有过类似的规范,并通过额外的打印 View 实现了它。

在那里您可以从 Controller 获取附加数据并包含特殊的 CSS 样式。当您使用 bootstrap 时,考虑到 PDF 打印所使用的分辨率非常小,因此您必须使用 col-xs-* 类。

在我的例子中,打印 View 被称为 ResultPrint.cshtml,在 Controller 中我有这个函数:

    public ActionResult GeneratePDF(int id)
{
InputPrintModel model = db.InputPrintModel.Find(id);
if (model == null)
{
return HttpNotFound();
}

try
{
return new ViewAsPdf("ResultPrint", model);
}
catch (Exception ex)
{
// Error Dialog + Logging
return View("Result", model);
}
}

在我的 Result.cshtml 中这样调用:

@Html.ActionLink("Generate PDF", "GeneratePDF", new { id = Model.Id })

编辑

当你看到这个答案 https://stackoverflow.com/a/26544977/2660864您可以看到,您可以在 CustomActions 中使用 .cshtml 文件(我没有测试此代码)

public ActionResult ViewPDF()
{
string cusomtSwitches = string.Format("--print-media-type --allow {0} --footer-html {0} --footer-spacing -10",
Url.Action("Footer", "Document", new { area = ""}, "https"));


return new ViewAsPdf("MyPDF.cshtml", model)
{
FileName = "MyPDF.pdf",
CustomSwitches = customSwitches
};
}

[AllowAnonymous]
public ActionResult Footer()
{
// get custom data for view
return View(model);
}

关于asp.net-mvc - 在MVC中使用Rotativa pdf显示动态标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32306594/

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