我正在尝试制作一个简单的测试网站,以允许我使用 MVC4 列出、创建、编辑和删除客户对象。
在我的控制器内部,我有 2 个创建方法,一个用于在表单加载控件时使用的 Get,以及一个用于实际保存数据的 Post。
//
// GET: /Customer/Create
[HttpGet]
public ActionResult Create()
{
return View();
}
//
// POST: /Customer/Create
[HttpPost]
public ActionResult Create(Customer cust)
{
if (ModelState.IsValid)
{
_repository.Add(cust);
return RedirectToAction("GetAllCustomers");
}
return View(cust);
}
但是,当我运行项目并尝试访问创建操作时,我收到一个错误:
The current request for action 'Create' on controller type 'CustomerController' is ambiguous between the following action methods:
System.Web.Mvc.ActionResult Create() on type [Project].Controllers.CustomerController
System.Web.Mvc.ActionResult Create([Project].Models.Customer) on type [Project].Controllers.CustomerController
我知道它看不到我的 Get 和 Post 方法之间的区别,但我已经添加了属性。这可能是什么原因,我怎样才能让它再次工作?