我正在开发一个使用MVC(.NET 7.0)的Web应用程序,我需要将带有数据的视图转换为PDF,为此我使用Rotativa。
问题是,当我调用我的方法将视图
<a href="@Url.Action("ConvertToPdf", "Home", new { html = ViewData["html"] })">Convert to PDF</a>
字符串
未加载模型并引发异常
对象引用未设置为对象的示例。
这是可以理解的,因为代码没有到达加载视图数据的操作。
这是我的控制器Action
public ActionResult ConvertToPdf()
{
return new ViewAsPdf("ListUsers", _listUsers);
}
型
这是我想要转换的列表视图的操作
public async Task<IActionResult> ListUsers()
{
_listUsers = await _context.Users.ToListAsync();
return View(_listUsers);
}
型
任何想法,我如何可以加载数据到我的视图时,导出到PDF?我使用 ViewAsPdf,因为我运行Rotativa.AspNETCOre nuget包
1条答案
按热度按时间bihw5rsg1#
我终于自己找到了答案。
只需要从我的上下文加载数据
字符串
PDF格式的视图转换工作得很好。