码迷,mamicode.com
首页 > Web开发 > 详细

MVC中的ActionResult

时间:2014-11-06 14:25:24      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:des   style   http   io   color   ar   os   使用   java   

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

 

一、ActionResult派生类关系图

 

bubuko.com,布布扣

 

 

 

二、常见的几种ActionResult

 

1、ContentResult

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

 

 
C# 代码   复制
bubuko.com,布布扣
bubuko.com,布布扣public ContentResult RSSFeed() 
bubuko.com,布布扣
bubuko.com,布布扣{ 
bubuko.com,布布扣
bubuko.com,布布扣    Story[] stories = GetAllStories(); // Fetch them from the database or wherever 
bubuko.com,布布扣
bubuko.com,布布扣  
bubuko.com,布布扣
bubuko.com,布布扣    // Build the RSS feed document 
bubuko.com,布布扣
bubuko.com,布布扣    string encoding = Response.ContentEncoding.WebName; 
bubuko.com,布布扣
bubuko.com,布布扣    XDocument rss = new XDocument(new XDeclaration("1.0", encoding, "yes"), 
bubuko.com,布布扣
bubuko.com,布布扣        new XElement("rss", new XAttribute("version", "2.0"), 
bubuko.com,布布扣
bubuko.com,布布扣            new XElement("channel", new XElement("title", "Example RSS 2.0 feed"), 
bubuko.com,布布扣
bubuko.com,布布扣                from story in stories 
bubuko.com,布布扣
bubuko.com,布布扣                select new XElement("item", 
bubuko.com,布布扣
bubuko.com,布布扣                      new XElement("title", story.Title), 
bubuko.com,布布扣
bubuko.com,布布扣                      new XElement("description", story.Description), 
bubuko.com,布布扣
bubuko.com,布布扣                      new XElement("link", story.Url) 
bubuko.com,布布扣
bubuko.com,布布扣                   ) 
bubuko.com,布布扣
bubuko.com,布布扣            ) 
bubuko.com,布布扣
bubuko.com,布布扣        ) 
bubuko.com,布布扣
bubuko.com,布布扣    ); 
bubuko.com,布布扣
bubuko.com,布布扣     return Content(rss.ToString(), "application/rss+xml"); 
bubuko.com,布布扣
bubuko.com,布布扣}
bubuko.com,布布扣


2、EmptyResult

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


3、RedirectResult

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

 
C# 代码   复制
bubuko.com,布布扣
bubuko.com,布布扣public override void ExecuteResult(ControllerContext context) {
bubuko.com,布布扣
bubuko.com,布布扣    if (context == null) {
bubuko.com,布布扣
bubuko.com,布布扣        throw new ArgumentNullException("context");
bubuko.com,布布扣
bubuko.com,布布扣    }
bubuko.com,布布扣
bubuko.com,布布扣    if (context.IsChildAction) {
bubuko.com,布布扣
bubuko.com,布布扣        throw new InvalidOperationException(MvcResources.RedirectAction_CannotRedirectInChildAction);
bubuko.com,布布扣
bubuko.com,布布扣    }
bubuko.com,布布扣
bubuko.com,布布扣 
bubuko.com,布布扣
bubuko.com,布布扣    string destinationUrl = UrlHelper.GenerateContentUrl(Url, context.HttpContext);
bubuko.com,布布扣
bubuko.com,布布扣    context.Controller.TempData.Keep();
bubuko.com,布布扣
bubuko.com,布布扣    context.HttpContext.Response.Redirect(destinationUrl, false /* endResponse */);
bubuko.com,布布扣
bubuko.com,布布扣}
bubuko.com,布布扣


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# 代码   复制
bubuko.com,布布扣
bubuko.com,布布扣class CityData { public string city; public int temperature; } 
bubuko.com,布布扣bubuko.com,布布扣
bubuko.com,布布扣public JsonResult WeatherData() 
bubuko.com,布布扣
bubuko.com,布布扣{ 
bubuko.com,布布扣
bubuko.com,布布扣    var citiesArray = new[] { 
bubuko.com,布布扣
bubuko.com,布布扣        new CityData { city = "London", temperature = 68 }, 
bubuko.com,布布扣
bubuko.com,布布扣        new CityData { city = "Hong Kong", temperature = 84 } 
bubuko.com,布布扣
bubuko.com,布布扣    }; 
bubuko.com,布布扣
bubuko.com,布布扣    return Json(citiesArray); 
bubuko.com,布布扣
bubuko.com,布布扣}
bubuko.com,布布扣


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

 

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

 
C# 代码   复制
bubuko.com,布布扣
bubuko.com,布布扣public FilePathResult DownloadReport() 
bubuko.com,布布扣
bubuko.com,布布扣{ 
bubuko.com,布布扣
bubuko.com,布布扣    string filename = @"c:\\files\\somefile。pdf"; 
bubuko.com,布布扣
bubuko.com,布布扣    return File(filename, "application/pdf", "AnnualReport。pdf"); 
bubuko.com,布布扣
bubuko.com,布布扣}
bubuko.com,布布扣

 

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

 
C# 代码   复制
bubuko.com,布布扣
bubuko.com,布布扣
bubuko.com,布布扣
bubuko.com,布布扣public FileContentResult GetImage(int productId) 
bubuko.com,布布扣
bubuko.com,布布扣{ 
bubuko.com,布布扣
bubuko.com,布布扣    var product = productsRepository.Products.First(x => x.ProductID == productId); 
bubuko.com,布布扣
bubuko.com,布布扣    return File(product.ImageData, product.ImageMimeType); 
bubuko.com,布布扣
bubuko.com,布布扣}
bubuko.com,布布扣
bubuko.com,布布扣<img src="<%: Url.Action("GetImage", "Products",  new { Model.ProductID }) %>" /> 
bubuko.com,布布扣

 

FileStreamResult:返回流

 
C# 代码   复制
bubuko.com,布布扣
bubuko.com,布布扣public FileStreamResult ProxyExampleDotCom() 
bubuko.com,布布扣
bubuko.com,布布扣{ 
bubuko.com,布布扣
bubuko.com,布布扣    WebClient wc = new WebClient(); 
bubuko.com,布布扣
bubuko.com,布布扣    Stream stream = wc.OpenRead(http://www.studyofnet.com/); 
bubuko.com,布布扣
bubuko.com,布布扣    return File(stream, "text/html"); 
bubuko.com,布布扣
bubuko.com,布布扣}
bubuko.com,布布扣

 

MVC中的ActionResult

标签:des   style   http   io   color   ar   os   使用   java   

原文地址:http://www.cnblogs.com/rrxc/p/4078505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!