带有自定义actionresult的ASP.NET MVC:使用自定义TextWriter时,outputStream不可用

时间:2014-06-24 06:04:27

标签: c# asp.net-mvc actionresult

我想要生成PDF,并且我在控制器中使用以下代码来调用它:

public PdfActionResult Index()
{
   return new PdfActionResult("");
}

自定义动作结果< pdfActionResult'看起来像这样:

 public override void ExecuteResult(ControllerContext context)
        {
            var _pdfConverter = new PdfConverter { MediaType = "Print" };
            var response = context.HttpContext.Response;
            response.Clear();
            response.AddHeader("Content-Type", "application/pdf");
            response.AddHeader("Content-Disposition", String.Format("{0}; filename={1}.pdf;", true ? "attachment" : "inline", "bla"));
            var z = context.HttpContext.Request.Url.AbsoluteUri;
            z = z.Substring(0, z.IndexOf("?", System.StringComparison.Ordinal));
            var b = _pdfConverter.GetPdfBytesFromUrl(z);
            response.OutputStream.Write(b,0,b.Length);
            response.Close();
            response.Flush();
            response.End();
        }

我收到以下异常:

System.Web.HttpException: OutputStream is not available when a custom TextWriter is used.

我已经阅读了其他建议使用自定义动作结果的帖子,所以我没有成功。

有什么问题?

1 个答案:

答案 0 :(得分:2)

在这种情况下,我认为没有任何理由创建自定义ActionResult。返回PDF数据是一项非常常见的任务,最明智的方法是使用内置的FileResult

此外,您的PdfActionResult在这里混合了两个问题,( 1 )创建了PDF数据,并且( 2 )将其附加到响应中。 ActionResult的主要问题是如何将Action生成的资源交付给客户端,不生成资源本身

请改为尝试:

public FileResult Index()
{
    var _pdfConverter = new PdfConverter { MediaType = "Print" };
    var url = Request.Url.AbsolutePath;
    var pdfBytes = _pdfConverter.GetPdfBytesFromUrl(url);

    return File(pdfBytes, "application/pdf", "bla.pdf");
}