我正在使用ASP.Net MVC。
出于某种原因,我的JS文件并没有缩小。我的CSS正在缩小。
我的CSS缩小为:<link href="/ffee/content/css?v=vaNo49ei5GzRQAYnj-AD-AbQI3GKNs2OZ8q6-oJEEvk1" rel="stylesheet">
,但我的所有JS文件都在源代码中单独列出。
我正在发布模式下编译和发布。
有人可以告诉我如何解决这个问题吗?
谢谢,
标记
BootstrapBundleConfig.cs
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
namespace BootstrapSupport
{
public class BootstrapBundleConfig
{
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/js").Include(
"~/Scripts/jquery-{version}.js",
"~/Scripts/jquery-migrate-{version}.js",
"~/Scripts/bootstrap.js",
"~/Scripts/jquery.validate.js",
"~/scripts/jquery.validate.unobtrusive.js",
"~/Scripts/jquery.validate.unobtrusive-custom-for-bootstrap.js",
"~/Scripts/knockout-2.2.0.js",
"~/Scripts/bootstrap-combobox.js",
"~/Scripts/select2.js"
));
bundles.Add(new ScriptBundle("~/mt").Include(
"~/Scripts/bootstrap-datepicker.js",
"~/Scripts/mtDateEdit.js",
"~/Scripts/jquery-te-1.4.0.js"
//"~/Scripts/tinymce/tinymce.js"
));
bundles.Add(new StyleBundle("~/content/css").Include(
"~/Content/bootstrap.css",
"~/Content/body.css",
"~/Content/bootstrap-responsive.css",
"~/Content/bootstrap-mvc-validation.css",
"~/Content/bootstrap-combobox.css",
"~/Content/select2.css",
"~/Content/datepicker.css",
"~/Content/jquery-te-1.4.0.css"
));
}
}
}
的Global.asax.cs
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AuthConfig.RegisterAuth();
BootstrapSupport.BootstrapBundleConfig.RegisterBundles(System.Web.Optimization.BundleTable.Bundles);
BootstrapMvcSample.ExampleLayoutsRouteConfig.RegisterRoutes(RouteTable.Routes);
RegisterViewMapper();
}
_Bootstrap.Layout.Basic.cshtml - 位于文件底部:
<div class="container">
@Scripts.Render("~/js")
@Scripts.Render("~/mt")
@RenderSection("Scripts", required: false)
@Html.Partial("_alerts")
@Html.Partial("_validationSummary")
@RenderBody()
</div>
答案 0 :(得分:2)
您可以强制它仅用于发布模式,只需在Application_Start
中添加以下代码即可 #if RELEASE
BundleTable.EnableOptimizations = true;
#endif
答案 1 :(得分:2)
尝试使用BundleTable.EnableOptimizations = true;
如果存在缩小/捆绑错误(如您所述),请逐个删除捆绑中的*.js
个文件,直到找到有问题的文件为止。找到后,尝试在此文件的顶部和末尾添加换行符。