我有两个名称相同但方法签名不同的 Controller Action 。他们看起来像这样:

    //
    // GET: /Stationery/5?asHtml=true
    [AcceptVerbs(HttpVerbs.Get)]
    public ContentResult Show(int id, bool asHtml)
    {
        if (!asHtml)
            RedirectToAction("Show", id);

        var result = Stationery.Load(id);
        return Content(result.GetHtml());
    }

    //
    // GET: /Stationery/5
    [AcceptVerbs(HttpVerbs.Get)]
    public XmlResult Show(int id)
    {
        var result = Stationery.Load(id);
        return new XmlResult(result);
    }

我的单元测试调用一个或另一个 Controller Action 没有问题,但是我的测试html页面抛出System.Reflection.AmbiguousMatchException。
<a href="/Stationery/1?asHtml=true">Show the stationery Html</a>
<a href="/Stationery/1">Show the stationery</a>

为了使这项工作需要改变什么?

最佳答案

只是有一种这样的方法。

[AcceptVerbs(HttpVerbs.Get)]
public ActionResult Show(int id, bool? asHtml)
{
    var result = Stationery.Load(id);

    if (asHtml.HasValue && asHtml.Value)
        return Content(result.GetHtml());
    else
        return new XmlResult(result);
}

关于c# - 如何避免两个 Controller Action 之间出现AmbiguousMatchException?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/732205/

10-10 05:08