我需要从控制器返回一些json数据。有谁知道怎么做?
答案 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"});
}