需要从控制器返回json数据吗?

时间:2010-11-20 14:50:23

标签: asp.net-mvc asp.net-mvc-2

我需要从控制器返回一些json数据。有谁知道怎么做?

2 个答案:

答案 0 :(得分:2)

简单。它被称为JsonResult

答案 1 :(得分:1)

您可以手动执行此操作:

public ActionResult MyAction() {
    return Content("this is a string literal, which can be HTML, XML, JSON, etc.");
}

但是我想我之前记得一个真正的JSON返回对象,尽管我从来没有使用它。类似的东西:

public ActionResult MyAction() {
  return Json(new {thing1="first thing", thing2="second thing"});
}