Ili*_*eda 5 c# asp.net-mvc asp.net-mvc-4
我有一个MVC控制器,它提供了一个简单的视图
public class MyController : Controller {
[HttpGet]
public ActionResult Index() {
return View();
}
[HttpGet]
public ActionResult ZipIndex() {
// Get the file returned bu Index() and zip it
return File(/* zip stream */);
}
}
Run Code Online (Sandbox Code Playgroud)
从上面可以看出我需要实现的是一个方法,它获取由Index()生成的html,压缩它并将其作为可下载的文件返回.
我知道如何压缩,但我不知道如何获取HTML.
查看这篇文章http://approache.com/blog/render-any-aspnet-mvc-actionresult-to/.它提供了一种将任何ActionResult的输出呈现为字符串的简洁方法.
编辑
基于上述文章中概述的技术,完整的解决方案可能如下所示
using System.IO;
using System.IO.Compression;
using System.Web;
public class MyController : Controller
{
[HttpGet]
public ActionResult Index()
{
return View();
}
[HttpGet]
public FileContentResult ZipIndex()
{
// Render the View output:
var viewString = View("TheViewToRender").Capture(ControllerContext);
// Create a zip file containing the resulting markup
using (MemoryStream outputStream = new MemoryStream())
{
StreamReader sr = new StringReader(viewString);
using (ZipArchive zip = new ZipArchive(outputStream, ZipArchiveMode.Create, false))
{
ZipArchiveEntry entry = zip.CreateEntry("MyView.html", CompressionLevel.Optimal);
using (var entryStream = entry.Open())
{
sr.BaseStream.CopyTo(entryStream);
}
}
return File(outputStream.ToArray(), MediaTypeNames.Application.Zip, "Filename.zip");
}
}
}
public static class ActionResultExtensions {
public static string Capture(this ActionResult result, ControllerContext controllerContext) {
using (var it = new ResponseCapture(controllerContext.RequestContext.HttpContext.Response)) {
result.ExecuteResult(controllerContext);
return it.ToString();
}
}
}
public class ResponseCapture : IDisposable {
private readonly HttpResponseBase response;
private readonly TextWriter originalWriter;
private StringWriter localWriter;
public ResponseCapture(HttpResponseBase response) {
this.response = response;
originalWriter = response.Output;
localWriter = new StringWriter();
response.Output = localWriter;
}
public override string ToString() {
localWriter.Flush();
return localWriter.ToString();
}
public void Dispose() {
if (localWriter != null) {
localWriter.Dispose();
localWriter = null;
response.Output = originalWriter;
}
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
964 次 |
| 最近记录: |