ASP.NET MVC下Bundle的使用方法
asp.net mvc中bundle是用于打包捆绑资源的(一般是css和js),它是在全局文件global.asax.cs中注册bundle,而注册的具体实现默认是在app_start文件夹的bundleconfig.cs中
public class mvcapplication : system.web.httpapplication { protected void application_start() { arearegistration.registerallareas(); filterconfig.registerglobalfilters(globalfilters.filters); routeconfig.registerroutes(routetable.routes); bundleconfig.registerbundles(bundletable.bundles); } }
bundleconfig.registerbundles(bundletable.bundles); 在应用程序启用时注册bundle
public class bundleconfig { // 有关绑定的详细信息,请访问 http://go.microsoft.com/fwlink/?linkid=301862 public static void registerbundles(bundlecollection bundles) { bundles.add(new scriptbundle("~/bundles/jquery").include( "~/scripts/jquery-{version}.js")); bundles.add(new scriptbundle("~/bundles/jqueryval").include( "~/scripts/jquery.validate*")); // 使用要用于开发和学习的 modernizr 的开发版本。然后,当你做好 // 生产准备时,请使用 http://modernizr.com 上的生成工具来仅选择所需的测试。 bundles.add(new scriptbundle("~/bundles/modernizr").include( "~/scripts/modernizr-*")); bundles.add(new scriptbundle("~/bundles/bootstrap").include( "~/scripts/bootstrap.js", "~/scripts/respond.js")); bundles.add(new stylebundle("~/content/css").include( "~/content/bootstrap.css", "~/content/site.css")); } }
为了便于说明,这里在homecontroller下新建一个action,如下:
public actionresult bundletest() { return view(); }
这里以使用bootstrap为例,在视图中使用@styles.render() 和@scripts.render() 引入css和js,参数是在bundleconfig注册的名称
@{ layout = null; } <!doctype html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>bundletest</title> @styles.render("~/content/css") </head> <body> @scripts.render("~/bundles/jquery", "~/bundles/bootstrap") </body> </html>
浏览页面,查看源代码,可以看到:
bundles.add(new stylebundle("~/content/css").include( "~/content/bootstrap.css", "~/content/site.css"));
由于在bundleconfig.cs中注册上面的bundle,@styles.render("~/content/css")渲染时是引入~/content/bootstrap.css和~/content/site.css,js的渲染同理
为了验证是否真正引入了bootstrap的css与js资源,这里添加了一些简单的bootstrap示例代码,如下:
@{ layout = null; } <!doctype html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>bundletest</title> @styles.render("~/content/css") </head> <body> <div class="container"> <div class="header clearfix"> <nav> <ul class="nav nav-pills pull-right"> <li role="presentation" class="active"><a href="#">首页</a></li> <li role="presentation"><a href="#">关于我们</a></li> <li role="presentation"><a href="#">联系我们</a></li> </ul> </nav> </div> <form class="form-horizontal"> <div class="form-group"> <label for="username" class="col-sm-2 control-label">用户名</label> <div class="col-sm-10"> <input type="text" class="form-control" id="username" placeholder="用户名"> </div> </div> <div class="form-group"> <label for="password" class="col-sm-2 control-label">密码</label> <div class="col-sm-10"> <input type="password" class="form-control" id="password" placeholder="密码"> </div> </div> <div class="form-group"> <label for="code" class="col-sm-2 control-label">验证码</label> <div class="col-sm-10"> <input type="text" class="form-control" id="code" placeholder="验证码"> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <div class="checkbox"> <label> <input type="checkbox"> 记住我 </label> </div> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <button type="submit" class="btn btn-default">登录</button> </div> </div> </form> <footer class="footer"> <p>© 2017 zhong.</p> </footer> </div> <!-- /container --> @scripts.render("~/bundles/jquery", "~/bundles/bootstrap") </body> </html>
前台浏览看效果(当浏览器足够大时是横向平铺的,如果将浏览器缩小,则是垂直平铺,示例中的表单部分最能体现出来):
改进
上面的bundle是引入了未压缩的css和js资源,但在实际应用中,出于为了减轻服务器负载等原因,需要引入压缩版的资源(一般是在未压缩的命名后面加上min来命名,如jquery.js的压缩版【有些叫法是精简版】是jquery.min.js)
于是修改bundleconfig.cs
重新编译,再次浏览刚才的页面,这时发现引入了压缩版的资源(css/js)
注:由于示例时使用了asp.net mvc 5( .net framework 4.5),而在.net framework 4中的asp.net mvc 4可能会有下面的情况:
在页面查看源代码时发现脚本缺少引入~/scripts/bootstrap.min.js,这是asp.net mvc 4使用的system.web.optimization.dll默认使用了忽略规则*.min.js,这时可以在bundleconfig.cs的registerbundles中清除忽略规则
该解决方法一是通过反编译system.web.optimization.dll并结合反编译的代码得出来的,另外也可以参考
另外就是在部署生产环境时发现无效,因为生产环境不再是debug模式,此时需要设置:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 公孙衍是商鞅的接班人,他为何一生反秦?
推荐阅读
-
ASP.NET Core静态文件的使用方法
-
ASP.NET MVC5网站开发之业务逻辑层的架构和基本功能 (四)
-
ASP.NET MVC5网站开发之用户资料的修改和删除3(七)
-
ASP.NET MVC5网站开发之用户角色的后台管理1(七)
-
ASP.NET MVC从视图传参到控制器的几种形式
-
干货分享:ASP.NET CORE(C#)与Spring Boot MVC(JAVA)异曲同工的编程方式总结
-
asp.net下实现支持文件分块多点异步上传的 Web Services
-
LNMP下FTP服务器的安装与使用方法(Pureftpd和Proftpd)
-
Asp.Net MVC中Aplayer.js音乐播放器的使用
-
ASP.NET Core MVC 中实现中英文切换的示例代码