gpt4 book ai didi

asp.net-mvc-4 - bundle 与缩小,哪一个最好

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

我想知道以下哪种方式更好。

bundle css 文件,然后使用:

 bundles.Add(new StyleBundle("~/BootStrap/css").Include(
"~/BootStrap/css/bootstrap.css",
"~/BootStrap/css/bootstrap-responsive.css"));



直接使用 *.min 文件如下:
<link href="~/BootStrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="~/BootStrap/css/bootstrap-responsive.min.css" rel="stylesheet" />

我希望对性能的解释以及最佳实践。

最佳答案

bundle 更好,因为它不仅缩小了包含的文件,而且将它们打包在一个资源中,该资源转换为对服务器的一个请求,而不是多个请求,每个文件一个请求。

在最佳实践方面,使用 Bundling 是 MVC 约定的一部分,因此我认为这种方法是最佳实践。

关于asp.net-mvc-4 - bundle 与缩小,哪一个最好,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18815823/

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