MVC进阶学习--个性化目录结构(二)

(一)  浅谈MVC目录结构

  在上一篇(《MVC进阶学习--个性化目录结构(一)》)中了解到了MVC 的基本目录结构,以及各个目录的作用。我们只是说到了表面的目录结构,没有了解到它运行的原理。是不是MVC的目录结构只能有那种固定的模式呢,我们能否根据自己的需要扩展这些目录结构呢。答案是肯定的。因为asp.net MVC中引用了WebFromViewEngine 这个视图引擎

(二) WebFormViewEngine视图引擎

  1.IView接口    IView接口是对MVC结构中View对象的抽象, 此接口只有一个方法:

    void Render(ViewContext viewContext, TextWriter writer);  Render方法的作用就是展示View对象,

    通常是将页面HTML写入到Writer*浏览器展示.

  

  2.IViewEngine接口  MVC中ViewEngine的抽象,该接口有两个方法:

     ViewEngineResult FindPartialView(ControllerContext controllerContext, string partialViewName, bool useCache)

    ViewEngineResult FindView(ControllerContext controllerContext, string viewName, string masterName, bool useCache)

    该方法的作用就是寻找视图对象,值得注意的是上面两个方法返回的都不是ViewPage 页面对象,而是ViewEngineResult 对象。我们可以将ViewEngineResult理解为一次查询的结果, 在ViewEngineResult对象中包含有本次找到的IView对象.  这句话我也不是太懂,看很多相关资料是这样写的,我也姑且这样写吧

 

  3.IViewEngine 的实现类

   IViewEngine有两个实现类。 WebFormViewEngine :VirtualPathProviderViewEngine:IViewEngine  这个是它们的关系。而MVC中的试图引擎就是使用的WebFormViewEngine。 WebFormViewEngine包括了三个属性:

  MasterLocationFormats  可以个性化母版页的路径

  ViewLocationFormats     可以个性化试图页面的路径

  PartialViewLocationFormats   可以个性化用户控件的路径

  

  4.在Global.asax 中注册个性化路径

    

MVC进阶学习--个性化目录结构(二)MVC进阶学习--个性化目录结构(二)Code
 1         protected void Application_Start()
 2         {
 3             ViewEngines.Engines.Clear();
 4 
 5             ViewEngines.Engines.Add(new WebFormViewEngine()
 6             {
 7                 ViewLocationFormats = new string[] { 
 8                 "~/{0}.aspx",
 9                 "~/{0}.ascx",
10                 "~/Views/{1}/{0}.aspx",
11                 "~/Views/{1}/{0}.ascx",
12                 "~/Views/Shared/{0}.aspx",
13                 "~/Views/Shared/{0}.ascx"
14             }
15             });
16         }

 

上一篇:Linux Shell脚本实现批量PING测试


下一篇:MVC进阶学习--HtmlHelper之GridView控件拓展(一)