MVC4按主机名捆绑
我是MVC的新手。
我知道如何创建捆绑包,这很容易,它是一个很棒的功能:
bundles.Add(new StyleBundle("~/content/css").Include(
"~/content/main.css",
"~/content/footer.css",
"~/content/sprite.css"
));
但假设您的应用程序可以在不同的域下访问,并根据主机名称使用不同的css提供不同的内容。
根据主机名称,你如何获得一个包含不同文件的包? 在我的RegisterBundles所在的应用程序启动中(就像在我开始的MVC标准互联网应用程序中一样),我甚至不知道主机名。
什么是最佳实践?
如果注册捆绑软件时有可用的主机名,我可以为当前主机名选择正确的.css文件。 例如,我可以在应用程序开始请求上注册捆绑软件,并以某种方式检查它是否已经注册,如果没有,请为请求的主机名选择正确的文件并注册它?
如果是,如何?
编辑1
在过去的两个小时里,我对这个主题进行了更深入的研究,让我提出自己的解决方案,希望MVC的专家比我更专业,如果错误的话可以纠正我的方法。
我替换了:
@Styles.Render("~/Content/css")
有:
@Html.DomainStyle("~/Content/css")
这只是一个简单的帮手:
public static class HtmlExtensions
{
public static IHtmlString DomainStyle(this HtmlHelper helper, string p)
{
string np = mynamespace.BundleConfig.RefreshBundleFor(System.Web.Optimization.BundleTable.Bundles, "~/Content/css");
if (!string.IsNullOrEmpty(np))
return Styles.Render(np);
else
{
return Styles.Render(p);
}
}
}
RefreshBundleFor的位置是:
public static string RefreshBundleFor(BundleCollection bundles, string p)
{
if (bundles.GetBundleFor(p) == null)
return null;
string domain = mynamespace.Utilities.RequestUtility.GetUpToSecondLevelDomain(HttpContext.Current.Request.Url);
string key = p + "." + domain;
if (bundles.GetBundleFor(key) == null)
{
StyleBundle nb = new StyleBundle(key);
Bundle b = bundles.GetBundleFor(p);
var bundleContext = new BundleContext(new HttpContextWrapper(HttpContext.Current), BundleTable.Bundles, p);
foreach (FileInfo file in b.EnumerateFiles(bundleContext))
{
string nf = file.DirectoryName + "" + Path.GetFileNameWithoutExtension(file.Name) + "." + domain + file.Extension;
if (!File.Exists(nf))
nf = file.FullName;
var basePath = HttpContext.Current.Server.MapPath("~/");
if (nf.StartsWith(basePath))
{
nb.Include("~/" + nf.Substring(basePath.Length));
}
}
bundles.Add(nb);
}
return key;
}
而GetUpToSecondLevelDomain只是从主机名返回第二级域名,所以GetUpToSecondLevelDomain(“www.foo.bar.com”)=“bar.com”。
怎么样?
过度复杂 - Application_Start中提供了Request对象。 只需使用:
var host = Request.Url.Host;
在注册捆绑软件之前,根据返回的值有条件地注册捆绑软件包。
更新注册您与域密钥绑定的所有内容:
StyleBundle("~/content/foo1.css")...
StyleBundle("~/content/foo2.css")...
然后在所有控制器继承的基本控制器中,您可以构建要传递给视图的包名称:
var host = Request.Url.Host; // whatever code you need to extract the domain like Split('.')[1]
ViewBag.BundleName = string.Format("~/content/{0}.css", host);
然后在布局或视图中:
@Styles.Render(ViewBag.BundleName)
链接地址: http://www.djcxy.com/p/11647.html