为局部视图列表创建RazorPDF
本文关键字:创建 RazorPDF 列表 视图 局部 | 更新日期: 2023-09-27 18:20:07
我想在asp.net mvc应用程序中以pdf格式制作一份报告,目前我将结果显示为部分视图,即我的主页面是report,并且像一样调用
public ActionResult Report(int id)
{
ViewBag.Id =id;
return View();
}
在Report.cshtml中,我调用了5个局部视图来呈现报告的5个不同部分像这个
<div class="row">
@Html.Action("Report1", "Screening", new { Id = @ViewBag.Id })
</div>
<div class="row">
@Html.Action("Report2", "Screening", new { Id = @ViewBag.Id })
</div>
<div class="row">
@Html.Action("Report3", "Screening", new { Id = @ViewBag.Id })
</div>
<div class="row">
@Html.Action("Report4", "Screening", new { Id = @ViewBag.Id })
</div>
现在我想把Report制作成pdf,有没有办法直接从RazorPDF视图调用Partial视图?
你试过这个吗?
public ActionResult Report(int id)
{
ViewBag.Id =id;
var model=new YourViewModel()
return new RazorPDF.PdfResult(model, "Report");
}