AmbiguousMatchException:操作请求不明确

时间:2018-06-07 08:53:55

标签: c# asp.net-mvc dotnetnuke

编辑 - 问题解决了!

升级时尚未更新System.Web.Mvc的程序集引用。

Web.config:

Broken:
  <dependentAssembly>
    <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.1" />
  </dependentAssembly>
Fixed:
  <dependentAssembly>
    <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="0.0.0.0-5.1.0.0" newVersion="5.1.0.0" />
  </dependentAssembly>

/编辑

我正在运行DNN网站+网上商店(Hotcakes),最近升级了[DNN 7.4.2 - &gt; 8.0.3,HCC 1.10.4 Pro - &gt; 00年3月2日]。

我设法修复了除一个问题之外的所有问题:

  

“System.Reflection.AmbiguousMatchException:控制器类型'CartController'上的当前操作请求'Index'在以下操作方法之间不明确:   类型Hotcakes.Modules.Core.Controllers.CartController上的System.Web.Mvc.ActionResult IndexPost()   类型Hotcakes.Modules.Core.Controllers.CartController上的System.Web.Mvc.ActionResult Index()

我发现了各种问题,包括Routing: The current request for action [...] is ambiguous between the following action methods,但未找到解决方案。

根据我所学到的,这应该没问题 - 同样的ActionName,一个Get,一个Post。没有其他方法称为Index或IndexPost。 我错过了什么? 此外,我无法使用MapRoutes,因为DNN控制着 - &gt;没有Global.asax.cs。

行动方法:

    #region Main Cart Actions

    // GET: /Cart/
    [NonCacheableResponseFilter]
    [HccHttpGet]
    public ActionResult Index()
    {
        var model = IndexSetup();
        HandleActionParams();
        CheckForQuickAdd();
        LoadCart(model);
        ValidateOrderCoupons();
        CheckFreeItems(model);

        if (ModuleContext != null && ModuleContext.Configuration.DesktopModule.ModuleName == "Hotcakes.Cart")
            HccApp.AnalyticsService.RegisterEvent(HccApp.CurrentCustomerId, ActionTypes.GoToCart, null);

        CheckForStockOnItems(model);
        return View(model);
    }

    // POST: /Cart/
    [ActionName("Index")]
    [HccHttpPost]
    public ActionResult IndexPost()
    {
        var model = IndexSetup();
        LoadCart(model);

        var intResult = CartIntegration.Create(HccApp).BeforeProceedToCheckout(HccApp, model);

        if (!intResult.IsAborted)
        {
            if (CheckForStockOnItems(model))
            {
                ForwardToCheckout(model);
            }
        }
        else
        {
            FlashWarning(intResult.AbortMessage);
        }

        return View(model);
    }

观点:

namespace Hotcakes.Modules.MiniCart
{
    public partial class MiniCartView : HotcakesModuleBase
    {
        protected override string RenderView()
        {
            var viewName = Convert.ToString(Settings["View"]);
            if (!string.IsNullOrEmpty(viewName))
                return MvcRenderingEngine.Render("Cart", "Index");
            return MvcRenderingEngine.Render("Cart", "Index", "MiniCart", new {MiniCart = true});
        }
    }
}

发布属性:

namespace Hotcakes.Commerce.Extensions
{
    [AttributeUsage(AttributeTargets.Method)]
    public sealed class HccHttpPostAttribute : ActionMethodSelectorAttribute
    {
        // Fields
        private static readonly AcceptVerbsAttribute _innerAttribute = new AcceptVerbsAttribute(HttpVerbs.Post);

        // Methods
        public override bool IsValidForRequest(ControllerContext controllerContext, MethodInfo methodInfo)
        {
            var hccRequestType = (string) controllerContext.RequestContext.RouteData.Values["hccrequesttype"];
            if (Factory.CreateHccFormRenderer().VirtualFormUsed && !string.IsNullOrEmpty(hccRequestType))
            {
                return hccRequestType == "hccpost";
            }
            return _innerAttribute.IsValidForRequest(controllerContext, methodInfo);
        }
    }
}

1 个答案:

答案 0 :(得分:0)

你有两个同名的方法,因为你用[ActionName(&#34; Index&#34;)]装饰了IndexPOST,所以现在它们都有路由/ YourController / Index。

更改属性值,或更改方法Index()(第一个)的名称