本文以近乎v5.2产品为例截图介绍,近乎产品是基于asp.net mvc 5.0框架。大家可以下一个近乎源码版,来进一步熟悉和了解学习。
近乎下载地址:http://www.jinhusns.com/
MVC项目一启动会首先进入到Global执行Application_Start()这个方法注册 区域 、过滤器、 BundleConfig、 路由、还有公司封装的一个启动方法 starter(对所有服务的依赖注入)
在BundleConfig.cs注册所使用的捆绑的CSS 和 JS文件:
bundles.Add(new StyleBundle("~/Bundle/Styles/Site").Include("~/css/bootstrap.css"));
bundles.Add(new ScriptBundle("~/bundles/easyui").Include("~/Scripts/jquery.easyui.min-1.4.2.js"));
在View使用方法:
@Styles.Render ("~/Bundle/Styles/Site")
@Scripts.Render ("~/bundles/easyui ")
FilterConfig.cs: 注册外部/全局过滤器,这些过滤器可以被应用到每个Action和Controller中去.
全局Filter对整个应用程序的所有controller下的所有action方法有效。在App_Start/FilterConfig.cs文件中的RegisterGlobalFilters方法
RouteConfig.cs: 配置MVC应用程序的系统路由路径。