当前位置:  开发笔记 > 编程语言 > 正文

返回JSON或部分html的ASP.NET MVC控制器操作

如何解决《返回JSON或部分html的ASP.NETMVC控制器操作》经验,为你挑选了7个好方法。

我正在尝试创建控制器操作,它将返回JSON或部分html,具体取决于参数.将结果异步返回到MVC页面的最佳方法是什么?



1> Haacked..:

在您的action方法中,返回Json(object)以将JSON返回到您的页面.

public ActionResult SomeActionMethod() {
  return Json(new {foo="bar", baz="Blech"});
}

然后使用Ajax调用action方法.您可以使用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("This is poorly formatted xml.", "text/xml");


如果您找到答案,请将其链接到问题本身.此外,我不认为检查这个答案是正确的.
对不起菲尔!这实际上没有回答这个问题吗?它绝对有用,但正如布拉德说你需要以某种方式找出他们要求的东西并相应地返回结果.

2> 小智..:

我认为你应该考虑请求的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

希望这有助于詹姆斯


感谢James,这对于使用相同的Controller Actions创建网站和REST API非常有用.

3> SaaS Develop..:

处理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);
    }
);


这根本不回答这个问题.
@Aaronaught实际上第一部分`返回Json(new {foo ="bar",baz ="Blech"});`确实!

4> Shane..:

我发现使用JQuery实现MVC ajax GET调用的几个问题导致我头疼,所以在这里共享解决方案.

    确保在ajax调用中包含数据类型"json".这将自动为您解析返回的JSON对象(假设服务器返回有效的json).

    包括JsonRequestBehavior.AllowGet; 没有这个MVC返回HTTP 500错误(dataType: json在客户端上指定).

    添加cache: false到$ .ajax调用,否则您最终将获得HTTP 304响应(而不是HTTP 200响应),服务器将不会处理您的请求.

    最后,json区分大小写,因此元素的大小需要在服务器端和客户端匹配.

示例JQuery:

$.ajax({
  type: 'get',
  dataType: 'json',
  cache: false,
  url: '/MyController/MyMethod',
  data: { keyid: 1, newval: 10 },
  success: function (response, textStatus, jqXHR) {
    alert(parseInt(response.oldval) + ' changed to ' + newval);                                    
  },
  error: function(jqXHR, textStatus, errorThrown) {
    alert('Error - ' + errorThrown);
  }
});

示例MVC代码:

[HttpGet]
public ActionResult MyMethod(int keyid, int newval)
{
  var oldval = 0;

  using (var db = new MyContext())
  {
    var dbRecord = db.MyTable.Where(t => t.keyid == keyid).FirstOrDefault();

    if (dbRecord != null)
    {
      oldval = dbRecord.TheValue;
      dbRecord.TheValue = newval;
      db.SaveChanges();
    }
  }

    return Json(new { success = true, oldval = oldval},
                JsonRequestBehavior.AllowGet);
}



5> Brad Wilson..:

要回答问题的另一半,您可以致电:

return PartialView("viewname");

当你想要返回部分HTML时.您只需找到一些方法来确定请求是否需要JSON或HTML,可能基于URL部分/参数.


所以这个问题仍然没有答案吗?
这不回答这个问题.

6> 小智..:

带有编码框架的替代解决方案

行动返回json

调节器

    [HttpGet]
    public ActionResult SomeActionMethod()
    {
        return IncJson(new SomeVm(){Id = 1,Name ="Inc"});
    }

剃刀页面

@using (var template = Html.Incoding().ScriptTemplate("tmplId"))
{
    using (var each = template.ForEach())
    {
         Id: @each.For(r=>r.Id) Name: @each.For(r=>r.Name)
    }
}

@(Html.When(JqueryBind.InitIncoding)
  .Do()
  .AjaxGet(Url.Action("SomeActionMethod","SomeContoller"))
  .OnSuccess(dsl => dsl.Self().Core()
                              .Insert
                              .WithTemplate(Selector.Jquery.Id("tmplId"))
                              .Html())
  .AsHtmlAttributes()
  .ToDiv())

动作返回html

调节器

    [HttpGet]
    public ActionResult SomeActionMethod()
    {
        return IncView();
    }

剃刀页面

@(Html.When(JqueryBind.InitIncoding)
  .Do()
  .AjaxGet(Url.Action("SomeActionMethod","SomeContoller"))
  .OnSuccess(dsl => dsl.Self().Core().Insert.Html())
  .AsHtmlAttributes()
  .ToDiv())



7> Paul Hinett..:

你可能想看看这篇非常有用的文章,它很好地涵盖了这一点!

只是认为它可以帮助人们寻找这个问题的一个很好的解决方案.

http://weblogs.asp.net/rashid/archive/2009/04/15/adaptive-rendering-in-asp-net-mvc.aspx

推荐阅读
mobiledu2402851203
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有