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

MVC。Action方法,常用的返回类型有几种?

时间:2015-11-01 15:18:53      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

常用的:

1,string,直接返回响应报文字符串

public ActionResult test()
{
return "哈哈";
}
2.ViewResult,ActionResult--返回视图对象

public ActionResult Test()
{
return View();
}

或者

public ViewResult Test()
{
return View();
}
3.JsonResult--返回json字符串

 

MVC。Action方法,常用的返回类型有几种?

标签:

原文地址:http://www.cnblogs.com/caofangsheng/p/4927649.html

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