我使用 ASP Bundler 已经有一段时间了(我记得这很糟糕),这些笔记来自我的记忆。请确认它仍然有效。
希望这将为您的搜索提供一个起点。
要解决这个问题,您需要在System.Web.Optimization namespace 中进行探索。
最重要的是System.Web.Optimization.BundleResponse 类,它有一个名为GetContentHashCode() 的方法,这正是您想要的。不幸的是,MVC Bundler 的架构很糟糕,我敢打赌这仍然是一种内部方法。这意味着您将无法从代码中调用它。
更新
感谢您的验证。所以看起来你有几种方法可以实现你的目标:
使用与 ASP Bundler 相同的算法计算您自己的哈希
使用反射调用Bundler的内部方法
从 bundler 中获取 URL(我相信有一个公共方法)并提取查询字符串,然后从中提取哈希(使用任何字符串提取方法)
对微软的糟糕设计感到愤怒
让我们使用 #2(小心,因为它被标记为内部而不是公共 API 的一部分,Bundler 团队对方法的重命名会破坏事情)
//This is the url passed to bundle definition in BundleConfig.cs
string bundlePath = "~/bundles/jquery";
//Need the context to generate response
var bundleContext = new BundleContext(new HttpContextWrapper(HttpContext.Current), BundleTable.Bundles, bundlePath);
//Bundle class has the method we need to get a BundleResponse
Bundle bundle = BundleTable.Bundles.GetBundleFor(bundlePath);
var bundleResponse = bundle.GenerateBundleResponse(bundleContext);
//BundleResponse has the method we need to call, but its marked as
//internal and therefor is not available for public consumption.
//To bypass this, reflect on it and manually invoke the method
var bundleReflection = bundleResponse.GetType();
var method = bundleReflection.GetMethod("GetContentHashCode", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
//contentHash is whats appended to your url (url?###-###...)
var contentHash = method.Invoke(bundleResponse, null);
bundlePath 变量与您为捆绑包指定的名称相同(来自 BundleConfig.cs)
希望这会有所帮助!祝你好运!
编辑:忘了说围绕这个添加测试是个好主意。该测试将检查GetHashCode 函数是否存在。这样,将来,如果 Bundler 的内部结构发生变化,测试将失败,您就会知道问题出在哪里。