为了账号安全,请及时绑定邮箱和手机立即绑定

ASP.NET Bundles如何禁用缩小

ASP.NET Bundles如何禁用缩小

HUWWW 2019-09-20 15:18:46
我debug="true"在我的web.config(s)中,我只是不希望我的捆绑缩小,但我没做什么似乎禁用它。我试过了enableoptimisations=false,这是我的代码://Javascriptbundles.Add(new ScriptBundle("~/bundles/MainJS")            .Include("~/Scripts/regular/lib/mvc/jquery.validate.unobtrusive.js*")            .Include("~/Scripts/regular/lib/mvc/jquery.validate*")            .Include("~/Scripts/regular/lib/bootstrap.js")            .IncludeDirectory("~/Scripts/regular/modules", "*.js", true)            .IncludeDirectory("~/Scripts/regular/pages", "*.js", true)            .IncludeDirectory("~/Scripts/regular/misc", "*.js", true));//CSSbundles.Add(new StyleBundle("~/bundles/MainCSS")            .Include("~/Content/css/regular/lib/bootstrap.css*")            .IncludeDirectory("~/Content/css/regular/modules", "*.css", true)            .IncludeDirectory("~/Content/css/regular/pages", "*.css", true))
查看完整描述

3 回答

?
青春有我

TA贡献1784条经验 获得超8个赞

如果您debug="true"web.config中并且正在使用Scripts/Styles.Render引用页面中的包,那么应该关闭捆绑和缩小。BundleTable.EnableOptimizations = false将始终关闭捆绑和缩小(无论调试真/假标志)。

你可能没有使用Scripts/Styles.Render助手吗?如果您通过直接呈现对包的引用,BundleTable.Bundles.ResolveBundleUrl()则始终会获得缩小/捆绑的内容。


查看完整回答
反对 回复 2019-09-20
?
慕妹3146593

TA贡献1820条经验 获得超9个赞

条件编译指令是你的朋友:


#if DEBUG

            var jsBundle = new Bundle("~/Scripts/js");

#else

            var jsBundle = new ScriptBundle("~/Scripts/js");

#endif


查看完整回答
反对 回复 2019-09-20
  • 3 回答
  • 0 关注
  • 596 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信