返回JSON或部分html的ASP.NET MVC控制器操作
我正在尝试创建控制器操作,它将根据参数返回JSON或部分HTML。 异步返回MVC页面的最好方法是什么?
在你的action方法中,返回Json(object)将JSON返回到你的页面。
public ActionResult SomeActionMethod() {
return Json(new {foo="bar", baz="Blech"});
}
然后使用Ajax调用操作方法。 您可以使用ViewPage中的一个辅助方法,如
<%= Ajax.ActionLink("SomeActionMethod", new AjaxOptions {OnSuccess="somemethod"}) %>
SomeMethod会是一个JavaScript方法,然后评估返回的Json对象。
如果你想返回一个纯字符串,你可以使用ContentResult:
public ActionResult SomeActionMethod() {
return Content("hello world!");
}
ContentResult默认返回一个text / plain作为其contentType。
这是可重载的,所以你也可以这样做:
return Content("<xml>This is poorly formatted xml.</xml>", "text/xml");
我认为你应该考虑请求的AcceptTypes。 我在当前项目中使用它来返回正确的内容类型,如下所示。
您对控制器的操作可以按照请求对象进行测试
if (Request.AcceptTypes.Contains("text/html")) {
return View();
}
else if (Request.AcceptTypes.Contains("application/json"))
{
return Json( new { id=1, value="new" } );
}
else if (Request.AcceptTypes.Contains("application/xml") ||
Request.AcceptTypes.Contains("text/xml"))
{
//
}
然后,您可以实现视图的aspx以迎合部分xhtml响应情况。
然后在jQuery中,您可以通过json传递类型参数来获取它:
$.get(url, null, function(data, textStatus) {
console.log('got %o with status %s', data, textStatus);
}, "json"); // or xml, html, script, json, jsonp or text
希望这有助于詹姆斯
处理JSON数据的另一个好方法是使用JQuery getJSON函数。 你可以打电话给
public ActionResult SomeActionMethod(int id)
{
return Json(new {foo="bar", baz="Blech"});
}
方法从jquery getJSON方法通过简单...
$.getJSON("../SomeActionMethod", { id: someId },
function(data) {
alert(data.foo);
alert(data.baz);
}
);
链接地址: http://www.djcxy.com/p/48163.html
上一篇: ASP.NET MVC controller actions that return JSON or partial html
下一篇: when Entity Framework is querying a too big data of Varbinary type