c# – MVC ActionResult调用另一个ActionResult

前端之家收集整理的这篇文章主要介绍了c# – MVC ActionResult调用另一个ActionResult前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个ActionResult调用另一个ActionResult.

我在我的case语句中调用了一个ActionResult,但是没有用.这是我有的:

public ActionResult GetReport(string pNum)
   {
   ....

        switch (methodId)
        {
          case 1:
          case 5:                
           {
             var actionResult =  GetP1Report("33996",false)  as ActionResult;
              break;
           }
         }

         return actionResult; 
       }

我收到以下错误:’actionResult’在当前上下文中不存在

如果我执行以下操作,它可以工作,但不是我需要的:

public ActionResult GetReport(string pNum)
   {
      ....

       var actionResult =  GetP1Report("33996",false)  as ActionResult;

        switch (methodId)
        {
          case 1:
          case 5:                
           {
             // var actionResult =  GetP1Report("33996",false)  as ActionResult;
              break;
           }
         }

         return actionResult; 
       }

如何让actionResult在我的case语句中工作,以便在我这样做时可以看到它

return actionResult

解决方法

只需在switch语句之外声明它(我猜是默认值):
ActionResult actionResult = null;
 switch (methodId)
    {
      case 1:
      case 5: // PVT,PVT-WMT
      {
          actionResult =  GetP1Report("33996",false)  as ActionResult;
          break;
       }
     }

 return actionResult ?? new View();

注意:我加了??新的View()作为默认值,如果没有任何案例为actionResult分配任何内容 – 根据需要修改它.

原文链接:https://www.f2er.com/csharp/243802.html

猜你在找的C#相关文章