asp.net-mvc – Asp.Net MVC捆绑,最好的方式来检测丢失的文件

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – Asp.Net MVC捆绑,最好的方式来检测丢失的文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚追赶了一个由于缺少的 javascript文件造成的错误,它是默默无声的.

文件的最小化版本存在但不是完整版本,一个链接不会呈现在客户端(我期待的),但是我也没有得到例外.我想知道文件是否不存在.

(只是为了清楚,捆绑包没有尝试包括最小化的版本,它试图包括完整版本,但最小化版本存在于脚本目录中)

我必须写一些自定义的东西来检测这个,或者MVC有什么内置的来报告?

谢谢

解决方法

我想起了对Bundle使用以下扩展方法
  1. public static class BundleHelper
  2. {
  3. [Conditional("DEBUG")] // remove this attribute to validate bundles in production too
  4. private static void CheckExistence(string virtualPath)
  5. {
  6. int i = virtualPath.LastIndexOf('/');
  7. string path = HostingEnvironment.MapPath(virtualPath.Substring(0,i));
  8. string fileName = virtualPath.Substring(i + 1);
  9.  
  10. bool found = Directory.Exists(path);
  11.  
  12. if (found)
  13. {
  14. if (fileName.Contains("{version}"))
  15. {
  16. var re = new Regex(fileName.Replace(".",@"\.").Replace("{version}",@"(\d+(?:\.\d+){1,3})"));
  17. fileName = fileName.Replace("{version}","*");
  18. found = Directory.EnumerateFiles(path,fileName).Where(file => re.IsMatch(file)).FirstOrDefault() != null;
  19. }
  20. else // fileName may contain '*'
  21. found = Directory.EnumerateFiles(path,fileName).FirstOrDefault() != null;
  22. }
  23.  
  24. if (!found)
  25. throw new ApplicationException(String.Format("Bundle resource '{0}' not found",virtualPath));
  26. }
  27.  
  28. public static Bundle IncludeExisting(this Bundle bundle,params string[] virtualPaths)
  29. {
  30. foreach (string virtualPath in virtualPaths)
  31. CheckExistence(virtualPath);
  32.  
  33. return bundle.Include(virtualPaths);
  34. }
  35.  
  36. public static Bundle IncludeExisting(this Bundle bundle,string virtualPath,params IItemTransform[] transforms)
  37. {
  38. CheckExistence(virtualPath);
  39. return bundle.Include(virtualPath,transforms);
  40. }
  41. }

这样你就不必明确地调用你的帮助方法PreCheck().它还支持ASP.NET的通配符{version}和*:

  1. bundles.Add(new ScriptBundle("~/test")
  2. .IncludeExisting("~/Scripts/jquery/jquery-{version}.js")
  3. .IncludeExisting("~/Scripts/lib*")
  4. .IncludeExisting("~/Scripts/model.js")
  5. );

猜你在找的asp.Net相关文章