MVC ActionResult派生类关系图

简介: 态度决定一切,我要改变的不仅仅是技术,还有对待事情的态度!先上个图:由上图可知,ActionResult为根节点,其下有很多子节点!下面简单介绍下:MVC中ActionResult是Action的返回结果。

态度决定一切,我要改变的不仅仅是技术,还有对待事情的态度!

先上个图:

由上图可知,ActionResult为根节点,其下有很多子节点!下面简单介绍下:

MVC中ActionResult是Action的返回结果。ActionResult 有多个派生类,每个子类功能均不同,并不是所有的子类都需要返回视图View,有些直接返回流,有些返回字符串等。ActionResult是一个抽象类,它定义了唯一的ExecuteResult方法,参数为一个ControllerContext,下面为您介绍MVC中的ActionResult 的用法!

ActionResult是控制器方法执行后返回的结果类型,控制器方法可以返回一个直接或间接从ActionResult抽象类继承的类型,如果返回的是非ActionResult类型,控制器将会将结果转换为一个ContentResult类型。默认的ControllerActionInvoker调用ActionResult.ExecuteResult方法生成应的结果。

常见的几种ActionResult

 

1、ContentResult

返回简单的纯文本内容,可通过ContentType属性指定应答文档类型,通过ContentEncoding属性指定应答文档的字符编码。可通过Controller类中的Content方法便捷地返回ContentResult对象。如果控制器方法返回非ActionResult对象,MVC将简单地以返回对象的ToString()内容为基础产生一个ContentResult对象。

C# 代码    复制
public ContentResult RSSFeed() 

{ 

    Story[] stories = GetAllStories(); // Fetch them from the database or wherever 

  

    // Build the RSS feed document 

    string encoding = Response.ContentEncoding.WebName; 

    XDocument rss = new XDocument(new XDeclaration("1.0", encoding, "yes"), 

        new XElement("rss", new XAttribute("version", "2.0"), 

            new XElement("channel", new XElement("title", "Example RSS 2.0 feed"), 

                from story in stories 

                select new XElement("item", 

                      new XElement("title", story.Title), 

                      new XElement("description", story.Description), 

                      new XElement("link", story.Url) 

                   ) 

            ) 

        ) 

    ); 

     return Content(rss.ToString(), "application/rss+xml"); 

}

2、EmptyResult

返回一个空的结果。如果控制器方法返回一个null,MVC将其转换成EmptyResult对象。


3、RedirectResult

表示一个连接跳转,相当于ASP.NET中的Response.Redirect方法。对应的Controller方法为Redirect。

 
C# 代码    复制
public override void ExecuteResult(ControllerContext context) {

    if (context == null) {

        throw new ArgumentNullException("context");

    }

    if (context.IsChildAction) {

        throw new InvalidOperationException(MvcResources.RedirectAction_CannotRedirectInChildAction);

    }

 

    string destinationUrl = UrlHelper.GenerateContentUrl(Url, context.HttpContext);

    context.Controller.TempData.Keep();

    context.HttpContext.Response.Redirect(destinationUrl, false /* endResponse */);

}

4、RedirectToRouteResult

同样表示一个调转,MVC会根据我们指定的路由名称或路由信息(RouteValueDictionary)来生成Url地址,然后调用Response.Redirect跳转。对应的Controller方法为RedirectToAction和RedirectToRoute。


5、ViewResult:

表示一个视图结果,它根据视图模板产生应答内容。对应Controller方法为View。


6、PartialViewResult:

表示一个部分视图结果,与ViewResult本质上一致,只是部分视图不支持母版,对应于ASP.NET,ViewResult相当于一个Page,而PartialViewResult则相当于一个UserControl。它对应的Controller方法为PartialView。


7、HttpUnauthorizedResult:

表示一个未经授权访问的错误。MVC会向客户端发送一个401的应答状态。如果在web.config中开启了表单验证(authentication mode="Forms"),则401状态会将Url转向指定的loginUrl链接。


8、JavaScriptResult:

本质上是一个文本内容,只是将Response.ContentType设置为 application/x-javascript,此结果应该和MicrosoftMvcAjax.js脚本配合使用,客户端接收到Ajax应答后,将判断Response.ContentType的值,如果是application/x-javascript,则直接eval执行返回的应答内容。此结果类型对应的Controller方法为JavaScript。


9、JsonResult:

表示一个JSON结果。MVC将Response.ContentType设置为application/json,并通过JavaScriptSerializer类将指定对象序列化为Json表示方式。需要注意,默认情况下,MVC不允许GET请求返回JSON结果,要解除此限制,在生成JsonResult对象时,将其JsonRequestBehavior属性设置为JsonRequestBehavior.AllowGet。此结果对应的Controller方法为Json。

C# 代码    复制
class CityData { public string city; public int temperature; } 

public JsonResult WeatherData() 

{ 

    var citiesArray = new[] { 

        new CityData { city = "London", temperature = 68 }, 

        new CityData { city = "Hong Kong", temperature = 84 } 

    }; 

    return Json(citiesArray); 

}

 

10、FilePathResult、FileContentResult、FileStreamResult: 这三个类继承于FileResult,表示一个文件内容,三者的区别在于,FilePath通过路径传送文件到客户端,FileContent通过二进制数据的方式,而FileStream是通过Stream的方式来传送。Controller为这三个文件结果类型提供了一个名为File的重载方法。

 

FilePathResult:直接将一个文件发送给客户端

public FilePathResult DownloadReport() 

{ 

    string filename = @"c:\\files\\somefile。pdf"; 

    return File(filename, "application/pdf", "AnnualReport。pdf"); 

}

 

FileContentResult:返回byte字节给客户端比如图片

public FileContentResult GetImage(int productId) 

{ 

    var product = productsRepository.Products.First(x => x.ProductID == productId); 

    return File(product.ImageData, product.ImageMimeType); 

}

<img src="<%: Url.Action("GetImage", "Products",  new { Model.ProductID }) %>" /> 

 

 

FileStreamResult:返回流

 
C# 代码    复制
public FileStreamResult ProxyExampleDotCom() 

{ 

    WebClient wc = new WebClient(); 

    Stream stream = wc.OpenRead(http://www.studyofnet.com/); 

    return File(stream, "text/html"); 

}

最后作一个总结:

类名 抽象类 父类 功能
ContentResult     根据内容的类型和编码,数据内容
EmptyResult     空方法
FileResult abstract   写入文件内容,具体的写入方式在派生类中
FileContentResult   FileResult 通过 文件byte[] 写入文件
FilePathResult   FileResult 通过 文件路径 写入文件
FileStreamResult   FileResult 通过 文件Stream 写入文件
HttpUnauthorizedResult     抛出401错误
javaScriptResult     返回Javascript文件
JsonResult     返回Json格式的数据
RedirectResult     使用Response.Redirect重定向页面
RedirectToRouteResult     根据Route规则重定向页面
ViewResultBase abstract   调用IView.Render()
PartialViewResult   ViewResultBase 调用父类ViewResultBase 的ExecuteResult方法. 重写了父类的FindView方法. 寻找用户控件.ascx文件
ViewResult   ViewResultBase 同上


@陈卧龙的博客
相关文章
|
6月前
|
前端开发 Java API
Spring MVC相关异常类
Spring MVC相关异常类
40 0
|
8月前
|
JSON 前端开发 Java
30个类手写Spring核心原理之MVC映射功能(4)
接下来我们来完成MVC模块的功能,应该不需要再做说明。Spring MVC的入口就是从DispatcherServlet开始的,而前面的章节中已完成了web.xml的基础配置。下面就从DispatcherServlet开始添砖加瓦。
31 0
|
8月前
|
XML NoSQL Java
干掉 CRUD!这个API开发神器效率爆炸,无需定义MVC类!!
magic-api 能够只通过 UI 界面就能完成简单常用的接口开发,能够支持市面上多数的关系性数据库,甚至还支持非关系性数据库 MongoDB。 通过 magic-api 提供的 UI 界面完成接口的开发,自动映射为 HTTP 接口,无需定义 Controller、Service、Dao、Mapper、XML、VO 等 Java 对象和相关文件! 该项目已经有上千家公司使用,上万名开发者使用,并有上百名程序员提交建议,20+ 贡献者,是非常值得信赖的项目!
|
前端开发 Java API
Spring MVC框架:第二章:视图解析器和@RequestMapping注解使用在类级别及获取原生Servlet API对象
Spring MVC框架:第二章:视图解析器和@RequestMapping注解使用在类级别及获取原生Servlet API对象
239 0
|
前端开发 Java 索引
Spring MVC Controller 方法参数 Map 的实现类是什么?
问题 题主问题描述如下: 在SpringBoot中,Controller的参数中有Map接口类型的,请问他的实现类是什么? 突发奇想,在SpringBoot中,Controller的参数中有Map接口类型的
346 0
Spring MVC Controller 方法参数 Map 的实现类是什么?
|
存储 开发框架 前端开发
ASP.NET MVC5----了解我们使用的@HTML帮助类
ASP.NET MVC5----了解我们使用的@HTML帮助类
241 0
ASP.NET MVC5----了解我们使用的@HTML帮助类
|
前端开发 Java API
CORS跨域资源共享(二):详解Spring MVC对CORS支持的相关类和API【享学Spring MVC】(下)
CORS跨域资源共享(二):详解Spring MVC对CORS支持的相关类和API【享学Spring MVC】(下)
|
前端开发 Java API
CORS跨域资源共享(二):详解Spring MVC对CORS支持的相关类和API【享学Spring MVC】(中)
CORS跨域资源共享(二):详解Spring MVC对CORS支持的相关类和API【享学Spring MVC】(中)
|
存储 前端开发 Java
CORS跨域资源共享(二):详解Spring MVC对CORS支持的相关类和API【享学Spring MVC】(上)
CORS跨域资源共享(二):详解Spring MVC对CORS支持的相关类和API【享学Spring MVC】(上)
CORS跨域资源共享(二):详解Spring MVC对CORS支持的相关类和API【享学Spring MVC】(上)
|
前端开发 Java Spring
java mvc 新趋势——从运行期间类扫描到编译期间
简介 今天我要讲解的是主角是 Annotation Processor,她不是什么新技术 jdk 1.6 就存在了。 Annotation Processor是javac的一个工具,它用来在编译时扫描和处理注解。
1718 0