Bundle 小镇中由 EasyUI 引发的“血案”

简介:

由于默认的 ASP.NET MVC 模板使用了 Bundle 技术,大家开始接受并喜欢上这种技术。Bundle 技术通过 Micorosoft.AspNet.Web.Optimization 包实现,如果在 ASP.NET WebForm 项目中引入这个包及其依赖包,在 ASP.NET WebForm 项目中使用 Bundle 技术也非常容易。


关于在 WebForm 中使用 Bundle 技术的简短说明

通过 NuGet 很容易在 WebForm 项目中引入Microsoft.AspNet.Web.Optimization 包及其依赖包。不过在 MVC 项目的 Razor 页面中可以使用类似下面的语句引入资源

1
@Scripts.Render( "..." )

而在 *.aspx 页面中则需要通过 <%= %> 来引入了:

1
2
3
<%@ Import Namespace= "System.Web.Optimization"  %>
// ...
<%= Scripts.Render( "..." ) %>

备注 有些资料中是使用的 <%: %>,我实在没有发现它和 <%= %> 有啥区别,但至少我在《ASP.NET Reference》《Code Render Blocks》一节找到了 <%= %>,却暂时没在官方文档里找到 <%: %>



然后,我在一个使用了 EasyUI 的项目中使用了 Bundle 技术。才开始一切正常,至到第一个 Release 版本测试的那一天,“血案”发生了——


由于一个脚本错误,EasyUI 没有生效。最终原因是 Bunlde 在 Release 版中将 EasyUI 的脚本压缩了——当然,定位到这个原因还是经历了一翻周折,这就不细说了。


[方案一] 禁用代码压缩

这个解决方案理论上只需要在配置里加一句话就行:

1
BundleTable.EnableOptimizations =  false ;

但问题在于,这样一来,为了一个 EasyUI,就放弃了所有脚本的压缩,而仅仅只是合并,效果折半,只能当作万不得已的备选


[方案二] 分段引入并阻止压缩 EasyUI 的 Bundle

先看看原本的 Bundle 配置(已简化)

1
2
3
4
5
6
7
8
9
public  static  void  Register(BundleCollection bundles)
{
     bundles.Add( new  ScriptBundle( "~/libs" )
         .Include( "~/scripts/jquery-{version}.js" )
         .Include( "~/scripts/jquery.eaysui-{versoin}.js" )
         .Include( "~/scripts/locale/easyui-lang-zh_CN.js" )
         .IncludeDirectory( "~/scripts/app" "*.js" true )
     );
}


这段配置先引入了 jquery,再引入了 easyui,最后引入了一些为当前项目写的公共脚本。为了实现解决方案二,必须要改成分三个 Bundle 引入,同时还得想办法阻止压缩其中一个 Bundle。


要分段,简单

1
2
3
4
5
6
7
8
9
10
11
12
13
public  static  void  Register(BundleCollection bundles)
{
     bundles.Add( new  ScriptBundle( "~/jquery" )
         .Include( "~/scripts/jquery-{version}.js" )
     );
     bundles.Add( new  ScriptBundle( "~/easyui" )
         .Include( "~/scripts/jquery.eaysui-{versoin}.js" )
         .Include( "~/scripts/locale/easyui-lang-zh_CN.js" )
     );
     bundles.Add( new  ScriptBundle( "~/libs" )
         .IncludeDirectory( "~/scripts/app" "*.js" true )
     );
}


但为了阻止压缩,查了文档,也搜索了不少资料都没找到解决办法,所以只好看源码分析了,请出 JetBrains dotPeek。分析代码之后得出结论,只需要去掉默认的 Transform 就行

1
2
3
4
5
6
7
8
9
10
// bundles.Add(new ScriptBundle("~/easyui")
//     .Include("~/scripts/jquery.eaysui-{versoin}.js")
//     .Include("~/scripts/locale/easyui-lang-zh_CN.js")
// );
Bundle easyuiBundle =  new  ScriptBundle( "~/easyui" )
     .Include( "~/scripts/jquery.eaysui-{versoin}.js" )
     .Include( "~/scripts/locale/easyui-lang-zh_CN.js" )
);
easyuiBundle.Transforms.Clear();
bundles.Add(easyuiBundle);



关键代码的分析说明


首先从 ScriptBunlde 入手

1
2
3
4
5
6
7
8
9
10
11
public  class  ScriptBundle: Bundle {
     public  ScriptBundle( string  virtualPath)
         this (virtualPath, ( string null ) {}
 
     public  ScriptBundle( string  virtualPath,  string  cdnPath)
         base (virtualPath, cdnPath,
             (IBundleTransform)  new  JsMinify()
         ) {
         this .ConcatenationToken =  ";"  + Environment.NewLine;
     }
}


可以看出,ScriptBunlde 的构建最终是通过其基类 Bunlde 中带 IBunldeTransform 参数的那一个来构造的。再看 Bunlde 的关键代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public  class  Bunlde 
 
     public  IList<IBundleTransform> Transforms {
         get  return  this ._transforms; }
     }
 
     public  Bundle(
         string  virtualPath,
         string  cdnPath,
         params  IBundleTransform[] transforms
     ) {
 
         // ...
 
         foreach (IBundleTransform bundleTransform  in  transforms) {
             this ._transforms.Add(bundleTransform);
         }
     }
}


容易理解,ScriptBunlde 构建的时候往 Transforms 中添加了一默认的 Transform——JsMinify,从名字就可以看出来,这是用来压缩脚本的。而 IBundleTransform 只有一个接口方法

1
2
3
public  interface  IBundleTransform {
     void  Process(BundleContext context, BundleResponse response);
}


看样子它是在处理 BundleResponse。而 BundleResponse 中定义有文本类型的 Content 和 ContentType 属性,以及一个 IEnumerable<BundleFile> Files


为什么是 Files 而不是 File 呢,我猜 Content 中包含的是一个 Bundle 中所有文件的内容,而不是某一个文件的内容。要验证也很容易,自己实现个 IBundleTransform 试下就行了

1
2
3
4
5
6
Bundle b =  new  ScriptBundle( "~/test" )
     .Include(...)
     .Include(...);
b.Transforms.Clear();b.Transforms.Add( new  MyTransform())
 
// MyTransform 可以自由发挥,我其实啥都没写,只是在 Process 里打了个断点,检查了 response 的属性值而已


实验证明在 BundleResponse 传入 Transforms 之前,其 Content 就已经有所有引入文件的内容了。



方案二解决了方案一不能解决的问题,但同时也带来了新问题。原来只需要一句话就能引入所有脚本

1
@Scripts.Render( "~/libs" )

而现在需要 3 句话

1
2
3
@Scripts.Render( "~/jquery" )
@Scripts.Render( "~/easyui" )
@Scripts.Render( "~/libs" )


[方案三] Bundle 的 Bundle

鉴于方案二带来的新问题,试想,如果有一个东西,能把 3 个 Bundle 对象组合起来,变成一个 Bundle 对象,岂不是就解决了?


于是,我发明了 Bundle 的 Bundle,不妨就叫 BundleBundle 吧。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
public  class  BundleBundle : Bundle{
     readonly  List<Bundle> bundles =  new  List<Bundle>();
  
     public  BundleBundle( string  virtualPath)
         base (virtualPath)
     {
     }
  
     public  BundleBundle Include(Bundle bundle)
     {
         bundles.Add(bundle);
         return  this ;
     }
  
     // 在引入 Bundle 对象时申明清空 Transforms,这几乎就是为 EasyUI 准备的
     public  BundleBundle Include(Bundle bundle,  bool  isClearTransform)
     {
         if  (isClearTransform)
         {
             bundle.Transforms.Clear();
         }
         bundles.Add(bundle);
         return  this ;
     }
  
     public  override  BundleResponse GenerateBundleResponse(BundleContext context)
     {
         List<BundleFile> allFiles =  new  List<BundleFile>();
         StringBuilder content =  new  StringBuilder();
         string  contentType =  null ;
  
         foreach  (Bundle b  in  bundles)
         {
             var  r = b.GenerateBundleResponse(context);
             content.Append(r.Content);
 
             // 考虑到 BundleBundle 可能用于 CSS,所以这里进行一次判断,
             // 只在 ScriptBundle 后面加分号(兼容 ASI 风格脚本)
             // 这里可能会出现在已有分号的代码后面加分号的情况,
             // 考虑到只会浪费 1 个字节,忍了
             if  (b  is  ScriptBundle)
             {
                 content.Append( ';' );
             }
             content.AppendLine();
  
             allFiles.AddRange(r.Files);
             if  (contentType ==  null )
             {
                 contentType = r.ContentType;
             }
         }
  
         var  response =  new  BundleResponse(content.ToString(), allFiles);
         response.ContentType = contentType;
         return  response;
     }
}


使用 BundleBundle 也简单,就像这样

1
2
3
4
5
6
7
8
9
10
11
12
13
bundles.Add( new  BundleBundle( "~/libs" )
     .Include( new  ScriptBundle( "~/bundle/jquery" )
         .Include( "~/scripts/jquery-{version}.js" )
     )
     .Include(
         new  ScriptBundle( "~/bundle/easyui" )
             .Include( "~/scripts/jquery.easyui-{version}.js" )
             .Include( "~/scripts/locale/easyui-lang-zh_CN.js" )
     )
     .Include( new  ScriptBundle( "~/bundle/app" )
         .IncludeDirectory( "~/scripts/app" "*.js" true )
     )
);

然后

1
@Scripts.Render( "~/libs" )


注意,每个子 Bundle 都有名字,但这些名字不能直接给 @Scripts.Render() 使用,因为它们并没有直接加入 BundleTable.Bundles 中。但名字是必须的,而且不能是 null,不信就试试。



本文转自边城__ 51CTO博客,原文链接:http://blog.51cto.com/jamesfancy/1605467,如需转载请自行联系原作者

相关文章
|
1天前
|
云安全 人工智能 自然语言处理
|
6天前
|
搜索推荐 编译器 Linux
一个可用于企业开发及通用跨平台的Makefile文件
一款适用于企业级开发的通用跨平台Makefile,支持C/C++混合编译、多目标输出(可执行文件、静态/动态库)、Release/Debug版本管理。配置简洁,仅需修改带`MF_CONFIGURE_`前缀的变量,支持脚本化配置与子Makefile管理,具备完善日志、错误提示和跨平台兼容性,附详细文档与示例,便于学习与集成。
314 116
|
8天前
|
数据采集 人工智能 自然语言处理
Meta SAM3开源:让图像分割,听懂你的话
Meta发布并开源SAM 3,首个支持文本或视觉提示的统一图像视频分割模型,可精准分割“红色条纹伞”等开放词汇概念,覆盖400万独特概念,性能达人类水平75%–80%,推动视觉分割新突破。
613 53
Meta SAM3开源:让图像分割,听懂你的话
|
21天前
|
域名解析 人工智能
【实操攻略】手把手教学,免费领取.CN域名
即日起至2025年12月31日,购买万小智AI建站或云·企业官网,每单可免费领1个.CN域名首年!跟我了解领取攻略吧~
|
5天前
|
人工智能 Java API
Java 正式进入 Agentic AI 时代:Spring AI Alibaba 1.1 发布背后的技术演进
Spring AI Alibaba 1.1 正式发布,提供极简方式构建企业级AI智能体。基于ReactAgent核心,支持多智能体协作、上下文工程与生产级管控,助力开发者快速打造可靠、可扩展的智能应用。
|
4天前
|
弹性计算 人工智能 Cloud Native
阿里云无门槛和有门槛优惠券解析:学生券,满减券,补贴券等优惠券领取与使用介绍
为了回馈用户与助力更多用户节省上云成本,阿里云会经常推出各种优惠券相关的活动,包括无门槛优惠券和有门槛优惠券。本文将详细介绍阿里云无门槛优惠券的领取与使用方式,同时也会概述几种常见的有门槛优惠券,帮助用户更好地利用这些优惠,降低云服务的成本。
270 132
|
8天前
|
机器学习/深度学习 人工智能 自然语言处理
AgentEvolver:让智能体系统学会「自我进化」
AgentEvolver 是一个自进化智能体系统,通过自我任务生成、经验导航与反思归因三大机制,推动AI从“被动执行”迈向“主动学习”。它显著提升强化学习效率,在更少参数下实现更强性能,助力智能体持续自我迭代。开源地址:https://github.com/modelscope/AgentEvolver
423 29
|
15天前
|
安全 Java Android开发
深度解析 Android 崩溃捕获原理及从崩溃到归因的闭环实践
崩溃堆栈全是 a.b.c?Native 错误查不到行号?本文详解 Android 崩溃采集全链路原理,教你如何把“天书”变“说明书”。RUM SDK 已支持一键接入。
728 224

热门文章

最新文章