【问题标题】:What are the scenarios where we can use Actionresult in MVC? [closed]我们可以在 MVC 中使用 Actionresult 的场景有哪些? [关闭]
【发布时间】:2016-11-29 11:26:35
【问题描述】:

我知道actionresult是ViewResult、JsonResult等继承的基类,但我想知道什么情况下可以直接调用ActionResult。

【问题讨论】:

    标签: c# asp.net asp.net-mvc asp.net-mvc-4


    【解决方案1】:

    当需要根据条件返回结果时

    public ActionResult TestAction()
    {
        if(true)
            return View();
        else
            Json(anyObject);
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-10-14
      • 2010-09-06
      • 1970-01-01
      • 1970-01-01
      • 2010-10-13
      相关资源
      最近更新 更多