获取 MVC 包查询字符串

Get MVC Bundle Querystring

是否可以在 ASP.NET MVC 中检测到捆绑查询字符串?

例如,如果我有以下捆绑包请求:

/css/bundles/mybundle.css?v=4Z9jKRKGzlz-D5dJi5VZtpy4QJep62o6A-xNjSBmKwU1

是否可以提取 v 查询字符串?:

4Z9jKRKGzlz-D5dJi5VZtpy4QJep62o6A-xNjSBmKwU1


我试过在捆绑转换中这样做,但没有成功。我发现即使 UseServerCache 设置为 false 转换代码并不总是 运行.

我已经有一段时间没有使用 ASP Bundler(我记得它很糟糕),这些笔记来自我的记忆。请验证它是否仍然有效。 希望这会为您的搜索提供一个起点。

要解决这个问题,您需要在 System.Web.Optimization namespace 中探索。

最重要的是 System.Web.Optimization.BundleResponse class,它有一个名为 GetContentHashCode() 的方法,这正是您想要的。不幸的是,MVC Bundler 的架构很糟糕,我敢打赌这仍然是一种内部方法。这意味着您将无法从您的代码中调用它。


更新

感谢您的验证。所以看起来您有几种方法可以实现您的目标:

  1. 使用与 ASP Bundler

  2. 相同的算法自行计算哈希值
  3. 使用反射调用Bundler的内部方法

  4. 从捆绑器中获取 URL(我相信有一个 public 方法)并提取查询字符串,然后从中提取散列(使用任何字符串提取方法)

  5. 对微软糟糕的设计大发雷霆

让我们继续 #2(小心,因为它被标记为内部而不是 public 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 的内部结构发生变化,测试就会失败,您就会知道问题出在哪里。