English 中文(简体)
将物理文件和动态文件合并到一个文件
原标题:Combine physical files and dynamic files to one file

我需要把一堆文件合并到一个“文件”中, 但我也需要一些文件能动态, 所以我有返回动态资源的行动。 例如,

[OutputCache(VaryByParam = "culture", Duration = 3600)]
public ActionResult Settings(string culture)
{
    CultureInfo cultureInfo;
    try
    {
        cultureInfo = new CultureInfo(culture);
    }
    catch
    {
        cultureInfo = Configuration.Current.DefaultCulture;
    }
    var sb = new StringBuilder();
    sb.AppendFormat("Cms.Settings.Language =  {0} ;", cultureInfo.TwoLetterISOLanguageName);

    sb.AppendFormat("Cms.Settings.DayNames = [{0}];", string.Join(",", cultureInfo.DateTimeFormat.DayNames.Select(d => """ + d + """)));
    sb.AppendFormat("Cms.Settings.ShortDayNames = [{0}];", string.Join(",", cultureInfo.DateTimeFormat.AbbreviatedDayNames.Select(d => """ + d + """)));
    sb.AppendFormat("Cms.Settings.FirstDay = {0};", (int)cultureInfo.DateTimeFormat.FirstDayOfWeek);

    sb.AppendFormat("Cms.Settings.ShortMonthNames = [{0}];", string.Join(",", cultureInfo.DateTimeFormat.AbbreviatedMonthNames.Take(12).Select(m => """ + m + """)));

    var languages = new[]{cultureInfo.TwoLetterISOLanguageName};
    var keys = translator.GetKeys(languages[0]);
    foreach (var key in keys)
    {
        sb.AppendFormat("Cms.Settings.Texts[ {0} ] =  {1} ;", key, translator.GetText(key, key, languages));
    }

    // TODO: from settings
    sb.AppendFormat("Cms.Settings.IconDir =  {0} ;", VirtualPathUtility.ToAbsolute("~/img/icons/"));
    return JavaScript(sb.ToString());
}

我想做的是把这些物理文档和动作Results 结合到一个“文件 ” 中。 我做了这个动作来合并, 但我不知道一个简单的方法可以通过路径获得动作的输出 。

// files is like "jquery.js,/js/settings?culture=fi,jquery-ui.js,..."
[OutputCache(VaryByParam = "files", Duration=3600)]
public ActionResult Bundle(string files)
{
    var paths = files.Split(new[] {  ,  }, StringSplitOptions.RemoveEmptyEntries);
    var sb = new StringBuilder();
    foreach (var path in paths)
    {
        appendFile(sb, path);
    }
    return JavaScript(sb.ToString());
}
private void appendFile(StringBuilder sb, string path)
{
    if (/* path is file on disk */)
    {
        var filename = Server.MapPath(path);
        if (!System.IO.File.Exists(filename))
        {
            return;
        }
        sb.Append(System.IO.File.ReadAllText(filename));
    }
    else if(/* is action */)
    {
        // how do I get the output?
        var output = getActionOutput(path);
        sb.Append(output);
    }
}

我尝试的另一个选项是使用虚拟 Path Provider 来制作动态文件, 但出于某种原因, “ GetFile” 并没有被调用到不在磁盘上的文件 。

public class JsVirtualPathProvider : VirtualPathProvider
{
    public override bool FileExists(string virtualPath)
    {
        if (virtualPath == "~/js/settings/fi.js")
        {
            // this was called
            return true;
        }
        return base.FileExists(virtualPath);
    }
    public override VirtualFile GetFile(string virtualPath)
    {
        // never called for this "file"?
        if (virtualPath == "~/js/settings/fi.js")
        {
                return new JsFile(virtualPath, "Cms.Settings.Foo =  Bar ;");
        }
        return base.GetFile(virtualPath);
    }

    class JsFile : VirtualFile
    {
        private readonly string content;
        public JsFile(string virtualPath, string content) : base(virtualPath)
        {
                this.content = content;
        }
        public override Stream Open()
        {
                return new MemoryStream(Encoding.UTF8.GetBytes(content), false);
        }
    }
}

将物理文件与动态/虚拟文件结合起来的最简单方式是什么?

最佳回答

我得到了一个动作的输出 与以下代码。

var url = string.Format("{0}://{1}", Request.Url.Scheme, Request.Url.Host);
if (Request.Url.Port != 80)
{
    url += ":" + Request.Url.Port;
}
url += path;
var writer = new StringWriter(sb);
var httpContext = new HttpContext(new HttpRequest("", url, ""), new HttpResponse(writer));
HttpContextBase httpContextBase = new HttpContextWrapper(httpContext);
var routeData = System.Web.Routing.RouteTable.Routes.GetRouteData(httpContextBase);
var handler = RouteData.RouteHandler.GetHttpHandler(new RequestContext(httpContextBase,routeData));
handler.ProcessRequest(httpContext);

出于某种原因,在所谓的行动(定居)中,QueryStringValueProvider具有呼叫动作(Bundle)的价值,因此我将路径更改为 /js/ sems/{culture}/code > (以前是/js/ sequies?cultation/code>)

问题回答
else if(/* is action */)
{
    // how do I get the output?

    // You need to send an HTTP request (for example using WebClient) 
    // to fetch the result of the execution of this action
    ...
}




相关问题
WebForms and ASP.NET MVC co-existence

I am trying to make a WebForms project and ASP.NET MVC per this question. One of the things I ve done to make that happen is that I added a namespaces node to the WebForms web.config: <pages ...

Post back complex object from client side

I m using ASP.NET MVC and Entity Framework. I m going to pass a complex entity to the client side and allow the user to modify it, and post it back to the controller. But I don t know how to do that ...

Create an incremental placeholder in NHaml

What I want to reach is a way to add a script and style placeholder in my master. They will include my initial site.css and jquery.js files. Each haml page or partial can then add their own required ...

asp.net mvc automapper parsing

let s say we have something like this public class Person { public string Name {get; set;} public Country Country {get; set;} } public class PersonViewModel { public Person Person {get; ...

structureMap mocks stub help

I have an BLL that does validation on user input then inserts a parent(PorEO) and then inserts children(PorBoxEO). So there are two calls to the same InsertJCDC. One like this=>InsertJCDC(fakePor)...

ASP.NET MVC: How should it work with subversion?

So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...