我想要链接http://localhost:2409/Account/Confirmation/16
和那个链接 http://localhost:2409/Account/Confirmation/
(没有参数)。
但是使用这种操作方法,它不起作用。为什么?
public ActionResult Confirmation(int id, string hash)
{
Some code..
return View();
}
其次,如果参数为空,我只想返回视图。
public ActionResult Confirmation()
{
return View();
}
错误(翻译):
当前对控制器 Confirmation AccountController 的操作请求在以下操作方法之间不明确: System.Web.Mvc.ActionResult Confirmation (Int32, System.String) 类型 TC.Controllers.AccountController System.Web.Mvc.ActionResult Confirmation ( ) 对于类型 TC.Controllers.AccountController