gpt4 book ai didi

jquery - 缩小没有生成缩小版本

转载 作者:行者123 更新时间:2023-12-01 02:56:53 25 4
gpt4 key购买 nike

我正在创建一个 asp.net webforms 应用程序并尝试缩小我的 js+css 文件。我正在使用这些指南:http://blogs.msdn.com/b/rickandy/archive/2012/08/14/adding-bundling-and-minification-to-web-forms.aspx .

我的 Web 应用程序的目标是 .net 4.0,但我将其更改为 .net 4.5。当我查看源选项卡中的 chrome Developertools 部分并查看 bundle 时,它看起来不像已生成:

jquery?v=

我添加了 BundleConfig 类:

public class BundleConfig
{
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include("~/jscripts/jquery-{version}.js"));
BundleTable.EnableOptimizations = true;
}
}

在 jscripts 文件夹中,我得到了其中的 js 文件:jquery-1.8.0.min.js在主页的母版页中我有:

<asp:PlaceHolder ID="PlaceHolder1" runat="server">
<%: Scripts.Render("~/bundles/jquery") %>
</asp:PlaceHolder>

在代码 OnInit-event 后面的母版页中,我有:

BundleConfig.RegisterBundles(BundleTable.Bundles);

当我调试应用程序时,它会命中渲染语句。我是否需要在不同的类中注册 bundle ?

最佳答案

为了能够在 Debug模式下查看缩小版本,您可以:

  1. 设置 BundleTable.EnableOptimizations = true;在您的bundleconfig.cs文件中
  2. 在 web.config 文件中设置编译 debug="false"

关于jquery - 缩小没有生成缩小版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19170600/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com