当前位置:首页 > ASP.NET MVC Framework体验(4):控制器

ASP.NET MVC Framework体验(4):控制器

点击次数:810  更新日期:2010-12-29
\n


\n

概述


\n

在MVC中,Controller用来处理和回应用户的交互,选择使用哪个View来进行显示,需要往视图中传递什么样的视图数据等。ASP.NET MVC Framework中提供了IController接口和Controller基类两种类型,其中在Controller提供了一些MVC中常用的处理,如定位正确的action并执行、为action方法参数赋值、处理执行过程中的错误、提供默认的WebFormViewFactory呈现页面。IController只是提供了一个控制器的接口,如果用户想自定义一个控制器的话,可以实现IController,它的定义如下:

public interface IController
\n{
\n void Execute(ControllerContext controllerContext);
\n}

\n

定义控制器和action


\n

在前面三篇的例子中,我们已经定义过了控制器,只要继承于Controller就可以了:

public class BlogController : Controller
\n{
\n [ControllerAction]
\n public void Index()
\n {
\n BlogRepository repository = new BlogRepository();

\n

List<Post> posts = repository.GetAll();
\n RenderView(“Index”, posts);
\n }

\n

[ControllerAction]
\n public void New()
\n {
\n RenderView(“New”);
\n }
\n}

通过ControllerAction特性来指定一个方法为action,ControllerAction的定义非常简单:
[AttributeUsage(AttributeTargets.Method)]
\npublic sealed class ControllerActionAttribute : Attribute
\n{
\n public ControllerActionAttribute();
\n}

\n

使用强类型传递ViewData


\n

通过前面的一些示例,已经看到了一些示例如何从控制器传递视图数据给View,在Controller中,传递视图数据到View,我们可以有两种方式选择,其中一种是使用强类型来传递视图数据,如下示例代码:

[ControllerAction]
\npublic void Index()
\n{
\n BlogRepository repository = new BlogRepository();

\n

List<Post> posts = repository.GetAll();
\n RenderView(“Index”, posts);
\n}


\n

有朋友在回复中提到,如果想传递多个Model或者集合数据到View,该如何传递?这里需要再定义一个类型:

public class HomeViewData
\n{
\n public List<Post> Posts
\n {
\n get; set;
\n }

\n

public List<Category> Categories
\n {
\n get; set;
\n }
\n}


\n

然后在控制器中可以这样进行传递数据:

[ControllerAction]
\npublic void Index()
\n{
\n BlogRepository repository = new BlogRepository();
\n List<Post> posts = repository.GetAll();

\n

List<Category> categories = repository.GetAllCategory();

\n

HomeViewData viewData = new HomeViewData();
\n viewData.Posts = posts;
\n viewData.Categories = categories;

\n

RenderView(“Index”, viewData);
\n}


\n

使用强类型类来传递视图数据,有如下好处(来自于Scrottgu):


\n

1.避免使用字符串来查询对象,得到对你的控制器和视图代码的编译时检查


\n

2.避免需要在使用象C#这样的强类型语言中明确转换ViewData对象字典中的值


\n

3.在你的视图网页的标识文件以及后台代码文件中得到你的ViewData对象的自动代码intellisense


\n

4.可以使用代码重构工具来帮助自动化对整个应用和单元测试代码库的改动


\n

使用ViewData字典来传递数据


\n

在Controller基类中,有一个这样的字典定义:

public IDictionary<string, object> ViewData { get; }

\n

这样我们可以直接把视图数据通过ViewData字段来传递,如下示例代码:

[ControllerAction]
\npublic void Index()
\n{
\n BlogRepository repository = new BlogRepository();
\n List<Post> posts = repository.GetAll();

\n

List<Category> categories = repository.GetAllCategory();

\n

ViewData["posts"] = posts;
\n ViewData["categories"] = categories;
\n RenderView(“Index”);
\n}


\n

在试图中,可以这样来获取视图数据:

<div>
\n <%foreach (Post post in (ViewData["posts"] as List<Post>))
\n { %>
\n <div class=”postitem”>
\n <strong>Title</strong>:<%=Html.Encode(post.Title) %></br>
\n <strong>Author</strong>:<%=Html.Encode(post.Author) %></br>
\n <strong>PubDate</strong>:<%=Html.Encode(post.PubDate.ToShortDateString()) %></br>
\n <strong>Content</strong>:<%=Html.Encode(post.Description) %></br>
\n <%=Html.ActionLink(“Edit”, new {action=”Edit”, Id=post.Id })%>
\n </div><br />
\n <% } %>
\n</div>

\n

处理未知的Action


\n

Controller类中包含了一个HandlerUnknownAction的方法:

protected internal virtual void HandleUnknownAction(string actionName);
它用来处理一些未知的Action,默认情况下将返回HTTP 404错误,如果想自定义该处理,可以覆写该方法:
[ControllerAction]
\nprotected override void HandleUnknownAction(string actionName)
\n{
\n if (ShouldShowSearch(action) == true)
\n {
\n RedirectToAction(“search”, new { query = action });
\n return;
\n }

\n

base.HandleUnknownAction(actionName);
\n}


\n

它用来处理当出现未知的Action时,跳转向Search Action。


\n

结束语


\n

在本篇文章中,我们介绍了ASP.NET MVC Framework中的Controller,包括如何定义Controller及Action,通过强类型和视图数据字典来传递视图数据,以及自定义处理未知的Action等内容,希望对您有所帮助。最后,插播一条小广告:我在博客园社区中建立了一个Web技术联盟小组,欢迎大家加入:http://space.cnblogs.com/group/webdev/

作者:TerryLee
出处:http://terrylee.cnblogs.com

\n