Sitecore还不支持MVC 4,我想使用System.Web.Optimization的捆绑和缩小。
对捆绑包的请求以404 Not Found回复。
BundleConfig.cs :
public class BundleConfig
{
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
"~/Scripts/jquery-ui-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.unobtrusive*",
"~/Scripts/jquery.validate*"));
// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));
bundles.Add(new StyleBundle("~/content/css").Include(
"~/Content/site.css",
"~/Content/960.gs/960.css"));
bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
"~/Content/themes/base/jquery.ui.core.css",
"~/Content/themes/base/jquery.ui.resizable.css",
"~/Content/themes/base/jquery.ui.selectable.css",
"~/Content/themes/base/jquery.ui.accordion.css",
"~/Content/themes/base/jquery.ui.autocomplete.css",
"~/Content/themes/base/jquery.ui.button.css",
"~/Content/themes/base/jquery.ui.dialog.css",
"~/Content/themes/base/jquery.ui.slider.css",
"~/Content/themes/base/jquery.ui.tabs.css",
"~/Content/themes/base/jquery.ui.datepicker.css",
"~/Content/themes/base/jquery.ui.progressbar.css",
"~/Content/themes/base/jquery.ui.theme.css"));
}
}
_Layout.cshtml :
@using System.Web.Optimization
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@ViewBag.Title</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="container_12">
<a href="/"><h1>Title</h1></a>
@Html.Action("Utilities", "Navigation")
@Html.Action("Menu", "Navigation")
@RenderBody()
</div>
@Scripts.Render("~/bundles/jquery")
@RenderSection("scripts", required: false)
</body>
</html>
捆绑包的路径是虚拟的,不会映射到物理文件夹。
忽略路由会引发NotImplementedException和500 Internal Server Error:
routes.IgnoreRoute("content/{*pathInfo}");
routes.IgnoreRoute("bundles/{*pathInfo}");
..但除此之外,请求由Sitecore处理,并以404 Not Found + Redirect响应。
我也试过了:
<system.webServer>
<modules runAllManagedModulesForAllRequests="false">
<remove name="BundleModule"/>
<add type="System.Web.Optimization.BundleModule" name="BundleModule"/>
</modules>
我无法将这一切全部合作。救命啊!
答案 0 :(得分:9)
上帝的母亲!
破解以下路线:
routes.MapRoute(
"sc_ignore_Bundles_Css",
"content/{*pathInfo}"
);
routes.MapRoute(
"sc_ignore_Bundles_Js",
"bundles/{*pathInfo}"
);
答案 1 :(得分:4)
有一个名为“IgnoreUrlPrefixes”的Sitecore设置,使用sitecore配置包括您可以修补此设置以包含例如“/ bundles”,它允许您使用/ bundles / * URL进行ASP.NET Web Optimization捆绑特征
答案 2 :(得分:1)
就我而言,使用Sitecore 6.6 update 5,我可以通过执行以下操作来捆绑工作:
首先,将其添加到web.config:
<system.webServer>
<modules runAllManagedModulesForAllRequests="false">
<remove name="BundleModule"/>
<add type="System.Web.Optimization.BundleModule" name="BundleModule"/>
</modules>
...
其次,我向管道添加了一个管道方法,以便在bundle表中注册bundle:
[UsedImplicitly]
public virtual void Process(PipelineArgs args)
{
BundleTable.EnableOptimizations = true;
RegisterBundles( BundleTable.Bundles );
}
private void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
}
接下来,我通过补丁文件将管道方法添加到管道:
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<pipelines>
<initialize>
<processor patch:before="processor[@type='Sitecore.Mvc.Pipelines.Loader.InitializeGlobalFilters, Sitecore.Mvc']"
type="MyStuff.Web.Pipelines.RegisterMyBundles, MyStuff.Web" />
</initialize>
</pipelines>
</sitecore>
</configuration>
最后,我修补了sitecore中的IgnoreUrlPrefixes设置以添加/ bundles路径
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<settings>
<setting name="IgnoreUrlPrefixes"
value="(all other sitecore paths here)|/bundles"/>
</settings>
</sitecore>
</configuration>
......不需要其他任何东西 - 像冠军一样工作。