喵-见缝插针 2008-10-22 13:31 采纳率: 0%
浏览 186
已采纳

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

I am trying to create controller actions which will return either JSON or partial html depending upon a parameter. What is the best way to get the result returned to an MVC page asynchronously?

转载于:https://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html

  • 写回答

11条回答 默认 最新

  • 谁还没个明天 2008-10-22 13:38
    关注

    In your action method, return Json(object) to return JSON to your page.

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

    Then just call the action method using Ajax. You could use one of the helper methods from the ViewPage such as

    <%= Ajax.ActionLink("SomeActionMethod", new AjaxOptions {OnSuccess="somemethod"}) %>
    

    SomeMethod would be a javascript method that then evaluates the Json object returned.

    If you want to return a plain string, you can just use the ContentResult:

    public ActionResult SomeActionMethod() {
        return Content("hello world!");
    }
    

    ContentResult by default returns a text/plain as its contentType.
    This is overloadable so you can also do:

    return Content("<xml>This is poorly formatted xml.</xml>", "text/xml");
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(10条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 怎么修改鸿蒙app的UI及功能设计
  • ¥20 双硬盘安装Ubuntu后windows 无法挂载硬盘
  • ¥15 帮我利用jupyter 运行一个正确的代码
  • ¥15 如何使用Gephi软件和Python包中的GephiStreamer交互
  • ¥15 sqlite加密问题咨询
  • ¥15 appdesigner接收不到udp组播的数据
  • ¥15 verilog 非阻塞赋值下的移位拼接错误
  • ¥100 两个按钮控制一个LED
  • ¥15 用C语言写离散数学相关问题
  • ¥30 如何用python的GephiStreamer连接到gephi中,把Python和Gephi的具体操作过程都展示,重点回答Gephi软件的调试,以及如果代码的端口在浏览器中无法显示怎么处理
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部