使用 ASP.NET MVC 4,我在同一个控制器中有两个 Index 方法,但具有不同的签名。
public ActionResult Index()
{
//...
}
public ActionResult Index(ManageOvertimesViewModel model)
{
//...
}
我不明白为什么我会收到这个错误。(如果我给出一个HttpPost
比它起作用的属性,那么我可能会这样做,但我不明白为什么它不起作用。)