ASP.NET MVC Bundles 用法和说明(打包javascript和css)
在网页中,我们经常需要引用大量的javascript和css文件,在加上许多javascript库都包含debug版和经过压缩的release版(比如jquery),不仅麻烦还很容易引起混乱,所以asp.net mvc4引入了bundles特性,使得我们可以方便的管理javascript和css文件。
原来,我们引用css和javascript文件我们需要这样一个一个的引用:
<scriptsrc="~/scripts/jquery-1.8.2.js"></script>
<scriptsrc="~/scripts/jquery-ui-1.8.24.js"></script>
<scriptsrc="~/scripts/jquery.validate.js"></script>
<linkhref="~/content/site.css"rel="stylesheet"/>
当需要引用文件的数量较少时还好,但一旦每个页面都需要引用较多文件时,会造成极大的不便,当我们想更换某个引用文件时,将会浪费大量的时间。发布时,还要将一些库替换成release版,比如上面的jquery-1.8.2.js所对应的jquery-1.8.2.min.js
还好,现在我们可以使用bundles特性:
public class bundleconfig
{
public static void registerbundles(bundlecollection bundles)
{
bundles.add(new scriptbundle("~/bundles/jquery")
.include("~/scripts/jquery-{version}.js"));
bundles.add(new scriptbundle("~/bundles/jqueryui")
.include("~/scripts/jquery-ui-{version}.js"));
bundles.add(new scriptbundle("~/bundles/jqueryval")
.include("~/scripts/jquery.unobtrusive*"
,"~/scripts/jquery.validate*"));
bundles.add(new stylebundle("~/content/css")
.include("~/content/site.css"));
}
}
接着在global.asax文件的application_start方法中调用bundleconfig.registerbundles方法:
protected void application_start()
{
arearegistration.registerallareas();
webapiconfig.register(globalconfiguration.configuration);
filterconfig.registerglobalfilters(globalfilters.filters);
routeconfig.registerroutes(routetable.routes);
bundleconfig.registerbundles(bundletable.bundles);
}
在上面我们可以看到我们按照功能的不同,将不同的文件分到了相应的bundle(bundle就是包的意思),其中构造函数中的string参数是bundle的名称,include函数是将参数相应的文件包含成一个bundle。可以发现,对于jquery库我们使用了这样的名称~/scripts/jquery-{version}.js,其中{version}部分代表版本号的意思,mvc将会替我们在scripts文件中寻找对应的"jquery-版本号.js"文件,并且在非debug模式下,mvc则会使用“jquery-版本号.min.js"文件。
我们还看到我们使用了这样的名称~/scripts/jquery.validate*的名称,*是一个通配符,这就意味着scripts文件夹下的所有前缀为jquery.validate的文件都将包含在同一个bundle中。
最后,我们可以view上使用bundle来代替原来引用的方式:
@styles.render("~/content/css")
@scripts.render("~/bundles/jquery")