6

我有一个 ActionResult 调用另一个 ActionResult。

我在我的案例语句中调用了一个 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 在我的案例语句中工作,以便在我这样做时可见

    return actionResult
4

2 回答 2

8

只需在 switch 语句之外先声明它(我猜是默认值):

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

 return actionResult ?? new View(); 

注意:我添加了?? new View()作为默认值,以防任何情况下都没有分配任何东西actionResult——根据需要修改它。

于 2012-12-20T22:12:18.590 回答
0

问题是变量范围。dbaseman 几乎做对了......这样做:

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

    ActionResult actionResult = new View(); // This would typically be assigned a
                                        // default ActionResult
    switch (methodId)
    {
        case 1:
        case 5:                
        {
            actionResult = GetP1Report("33996",false) as ActionResult;
            break;
         }
     }

     return actionResult; 
 }
于 2012-12-20T22:17:15.047 回答