gpt4 book ai didi

c# - Rotativa - ViewAspdf 在服务器上不工作

转载 作者:太空狗 更新时间:2023-10-29 22:13:36 24 4
gpt4 key购买 nike

我知道这个主题已经在多篇文章中讨论过,但没有一个解决方案对我有帮助。

我有这个 Action :

   public ActionResult DownloadViewPDF(string userId)
{
var model = db.MyCvs.FirstOrDefault(u => u.UserId == userId);

if (model != null)
return new Rotativa.ViewAsPdf("ViewUserCv", model) { FileName = model.FirstName + model.LastName + "_CV.pdf" };
return Content("there is no Cv to download");
}

使用上述操作,我正在下载一个 pdf 格式的 View ,并且一切都在我的计算机上按预期工作。

在服务器上部署项目后,此操作不起作用,返回错误:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

我正在使用 Visual Studio Community 2015。在服务器上,我有 Rotativa.dll 以及根目录中名为 Rotativa 的文件夹,其中包含名为 wkhtmltopdf.exe 的文件。

我不知道如何处理这个错误,你能给我一些建议吗?

最佳答案

我找到了一个非常简单的教程来解决我的 rotativa 问题,对于那些有同样问题的人,请按照这个教程:

Sample process to generate PDF with Rotativa in Asp.Net MVC

基于本教程,我们需要做的就是:

上传dll:

  • msvcp120.dll
  • msvcr120.dll

因为 Rotativa 需要“Visual C++ Redistributable for Visual Studio”的组件。

C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Packages\Debugger\X64\msvcp120.dll

C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Packages\Debugger\X64\msvcr120.dll

You can refer above path on your local with your own specified path to find it. Upload them to "Rotativa" folder.

关于c# - Rotativa - ViewAspdf 在服务器上不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35010382/

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