我有两个具有相同名称但具有不同方法签名的控制器操作。它们看起来像这样:
//
// 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);
}
我的单元测试在调用一个或另一个控制器操作时没有问题,但是我的测试html页面抛出了System.Reflection.AmbiguousMatchException。
<a href="/Stationery/1?asHtml=true">Show the stationery Html</a>
<a href="/Stationery/1">Show the stationery</a>
需要改变什么来使这项工作?
答案 0 :(得分:11)
只需要一个像这样的方法。
[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);
}
答案 1 :(得分:6)
Heres a link you may find userful.它讨论了重载MVC控制器。
答案 2 :(得分:1)
有两种方法可以解决这个问题:
1&GT;更改方法名称。 2 - ;为这两个方法提供不同的ActionName属性。您可以定义自己的属性。
答案 3 :(得分:0)
有ActionName
属性。看一看。
答案 4 :(得分:0)
要解决此问题,您可以编写一个ActionMethodSelectorAttribute
来检查每个操作的MethodInfo
,并将其与发布的Form值进行比较,然后拒绝任何与表单值不匹配的方法(当然,不包括按钮名称。
以下是一个示例: - http://blog.abodit.com/2010/02/asp-net-mvc-ambiguous-match/
您还可以制作一个更简单的ActionMethodSelectorAttribute
,它只会查看提交按钮名称,但会更紧密地绑定您的控制器和视图。