gpt4 book ai didi

asp.net - 在 ASP.NET 中 bundle 单个文件的成本/ yield 是什么?

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

<分区>

我正在使用 asp.net mvc5 创建一个网站,我需要将一个特定的 css 和 js 文件添加到单个页面。我的问题是,为单个 css 或 js 文件创建新包有什么好处?或者 bundle 单个文件是不好的做法,我不应该这样做?

下面的代码是我所说的不 bundle 与 bundle 单个文件的意思:

Traditional Method:
<link href="/content/css/foo.css" rel="stylesheet"/>
<script src="~/content/js/bar.min.js"></script>

Bundle Method:
bundles.Add(new ScriptBundle("~/bundles/bar").Include(
"~/content/js/bar.min.js"));

bundles.Add(new StyleBundle("~/content/foobundle").Include(
"~/content/css/foo.css"));

此问题仅涉及 bundle 单个文件。就像我的情况一样,我使用的日期选择器插件仅在我的 ASP.NET MVC 应用程序的一个页面上使用,因此将 css 和 js 文件添加到我的整个网站包中没有意义。

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