gpt4 book ai didi

css - ASP.NET MVC : access external project Bundles

转载 作者:太空宇宙 更新时间:2023-11-03 18:35:37 24 4
gpt4 key购买 nike

我有一个名为 WebLibrary 的元素,其中包含许多库控件 cssjs 文件。

为了提高性能,我正在使用 Bundles 压缩和组合所有 css 文件:

public class BundleConfig
{
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
public static void RegisterBundles(BundleCollection bundles)
{
BundleTable.EnableOptimizations = true;
bundles.IgnoreList.Clear();

bundles.Add(new Bundle("~/bundles/allLibrary8Css", new CssMinify())
.Include(
"~/Controls/Common/common.css",
"~/Controls/ApplicationTopHeader/applicationTopHeader.css",
"~/Controls/StatusBar/statusBar.css"
// other files
));
}
}

这会生成压缩和缩小的随机 css 文件(或资源)

enter image description here

但是,我想从外部元素引用这个压缩文件(或资源),但由于它生成的随机名称我不能这样做:

/bundles/allLibrary8Css?v=VSqWZLr-gqdgDlMqOOg6ULA53tJ-5qFiIBRY6Qe-VHw1

http://library.myApp.com/bundles/allLibrary8Css?v=VSqWZLr-gqdgDlMqOOg6ULA53tJ-5qFiIBRY6Qe-VHw1

有什么方法可以防止 bundle 创建随机名称,以便我可以正确引用它?

最佳答案

实际上,你可以,你可以安全地忽略查询字符串,一切都会好起来的,但是,你的缓存有问题......

关于css - ASP.NET MVC : access external project Bundles,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18782077/

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