我使用的是Asp.Net MVC 5以及System.Web.Optimization 1.1.0.0中的捆绑和缩小系统:
bundles.Add(new ScriptBundle("~/angularLibraries").Include(
......
));
然后渲染Bundle:
@Scripts.Render("~/angularLibraries")
我不时通过在浏览器中打开相应的URL来手动检查我的包的状态,有时我发现它们有错误。例如:
/* Minification failed. Returning unminified contents.
(262,145-152): run-time error JS1019: Can't have 'break' outside of loop: break a
(40,297-304): run-time error JS1019: Can't have 'break' outside of loop: break a
*/
由于捆绑机制在缩小失败时返回未分析的内容,因此在浏览器中手动打开该捆绑包之前,我不知道该错误。
如何在缩小失败时设置Bundling系统以引发异常,以便我立即意识到错误?
答案 0 :(得分:6)
找到解决方案。我创建了一个派生自ScriptBundle的自定义类,并重写了ApplyTransforms方法:
public class CustomScriptBundle : ScriptBundle
{
public CustomScriptBundle(string virtualPath)
: base(virtualPath)
{
}
public CustomScriptBundle(string virtualPath, string cdnPath)
: base(virtualPath, cdnPath)
{
}
public override BundleResponse ApplyTransforms(BundleContext context, string bundleContent, IEnumerable<BundleFile> bundleFiles)
{
BundleResponse bundleResponse = base.ApplyTransforms(context, bundleContent, bundleFiles);
if (bundleResponse.Content.StartsWith("/* Minification failed. Returning unminified contents."))
ExceptionManager.LogMessage("Minification failed for following bundle: " + context.BundleVirtualPath);
return bundleResponse;
}
}
我最终记录了一条消息(收到Elmah的电子邮件通知)并且没有抛出异常,因为我默认只在生产时启用了缩小功能,并且该应用程序仍将继续正常工作。
如果你抛出异常,你会看到它:
此解决方案也适用于StyleBundle。