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

MVC控制器中动作方法返回的结果

时间:2018-03-15 14:18:01      阅读:900      评论:0      收藏:0      [点我收藏+]

标签:www.   mvc   otf   content   json   view   ssg   class   asc   

  在MVC控制器中主要的返回方式有如下几种:

  1、Content():

       返回文本类型的ContentResult,比如“这是我做的一个MVC”。

  2、File():

       返回文件类型的内容FileResult,比如PDF

  3、HttpNotFound():

       返回包含404HTTP状态码的HttpNotFoundResult。

  4、JavaScript():

      返回包含JavaScript内容的JavaScriptResult,比如“function hello(){alert(Hello,World);}”。

  5、Json():

      返回JSON格式的数据的JsonResult,比如"{ "Messge" : Hello,World! }"。

  6、PartialView()

      返回包含部分视图内容的PartialViewResult(例如:视图可能不包含结局)。

  7、Redirect()

     返回一个包含302跳转状态值RedirectResult,跳转到给定的URL上。例如“302http://www.ebuy.com/auctions/recent”。这个方法包含一个同级别的方法RedirectPermanent(),它同样返回RedirectResult,但是使用的是301状态码去指示一个永久的跳转地址,而不是临时地址。

  8、RedirectToAction()和RedirectToRoute()

      与Redirect()类似,只有空间可以动态查询路由引擎来确定外部的URL。与Redirect()一样,它们同样包括永久跳转方法:RedirectToActionRermanent()和RedirectToRoutePermanent()。

  9、view()

      返回渲染视图的ViewResult。

 

MVC控制器中动作方法返回的结果

标签:www.   mvc   otf   content   json   view   ssg   class   asc   

原文地址:https://www.cnblogs.com/strive-boy/p/8573003.html

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