首页 > 学院 > 开发设计 > 正文

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

2019-11-14 15:44:48
字体:
来源:转载
供稿:网友

常用的:

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

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

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

或者

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

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表