在ASP.NET MVC 4项目中,我想引用这样的版本化脚本文件:
// Just some pseudo-code:
<script src="@Latest("~/Scripts/jquery-{0}.min.js")"></script>
// Resolves to the currently referenced script file
<script src="/Scripts/jquery-1.10.2.min.js"></script>
这样当通过NuGet更新新脚本版本时,引用会自动更新。我知道bundling-and-minification feature,但它只是很多。我只想要解决通配符的小部分。我的文件已经缩小了,我也不想要这些包。
你有一些聪明的想法如何解决这个问题?
答案 0 :(得分:3)
尽管在MVC中使用Bundling有点过分,但我认为这将是你最好的选择。它已经完成并证明了为什么要花更多的时间来编写一些专有代码。
话虽如此,如果您想要一个简单的样本,那么您可以尝试以下方法。
public static class Util
{
private const string _scriptFolder = "Scripts";
public static string GetScripts(string expression)
{
var path = HttpRuntime.AppDomainAppPath;
var files = Directory.GetFiles(path + _scriptFolder).Select(x => Path.GetFileName(x)).ToList();
string script = string.Empty;
expression = expression.Replace(".", @"\.").Replace("{0}", "(\\d+\\.?)+");
Regex r = new Regex(@expression, RegexOptions.IgnoreCase);
foreach (var f in files)
{
Match m = r.Match(f);
while (m.Success)
{
script = m.Captures[0].ToString();
m = m.NextMatch();
}
}
return script;
}
}
这将返回您的Scripts导演中的最后一个匹配,否则它将返回空字符串。
使用此电话
@Html.Raw(MvcApplication1.Util.GetScripts("jquery-{0}.min.js"))
如果1.8.2是与您的字符串匹配的最后一个文件,则会得到此结果。
jquery-1.8.2.min.js
希望这会帮助你开始。