我开发了一个 HTML 表单向导,它可以帮助创建一个对象来组合发送到服务器的数据。
我有一个具有以下两种操作方法的控制器:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult SaveItem( TypeOneItem model, int customerID ) {
和
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult SaveItem( TypeTwoItem model, int customerID ) {
TypeOneItem 和 TypeTwoItem 都是 BaseItem 的子类。类是这样定义的
public class BaseItem
{
public int ItemID { get; set; }
public string Name { get; set; }
}
public class TypeOneItem : BaseItem
{
public int Property1 { get; set; }
public string Property2 { get; set; }
}
public class TypeTwoItem : BaseItem
{
public string Property3 { get; set; }
public int Property4 { get; set; }
public double Property5 { get; set; }
}
但是,即使我发布正确的数据以仅绑定到两个具体类之一,我也会收到错误“ The current request for action 'SaveItem' on controller type 'ManageController' is ambiguous between the following action methods: System.Web.Mvc.ActionResult SaveItem(TypeOneItem, Int32) System.Web.Mvc.ActionResult SaveItem(TypeTwoItem, Int32)
”
为什么会发生这种情况?我不想在 UI 向导上更改服务器操作名称和硬编码差异。有没有其他方法可以解决这个问题?