2

我正在尝试在 ASP.NET MVC 4 应用程序中设置登录表单。目前,我已经配置了我的视图,如下所示:

路由配置.cs

routes.MapRoute(
  "DesktopLogin",
  "{controller}/account/login",
  new { controller = "My", action = "Login" }
);

我的控制器.cs

public ActionResult Login()
{
  return View("~/Views/Account/Login.cshtml");
}

[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel model)
{
  return View("~/Views/Account/Login.cshtml");
}

当我尝试在浏览器中访问 /account/login 时,我收到一条错误消息:

The current request for action 'Login' on controller type 'MyController' is ambiguous between the following action methods:
System.Web.Mvc.ActionResult Login() on type MyApp.Web.Controllers.MyController
System.Web.Mvc.ActionResult Login(MyApp.Web.Models.LoginModel) on type MyApp.Web.Controllers.MyController

如何在 ASP.NET MVC 4 中设置基本表单?我查看了 ASP.NET MVC 4 中的示例 Internet 应用程序模板。但是,我似乎无法弄清楚路由是如何连接的。非常感谢你的帮助。

4

1 回答 1

7

我还没有尝试过,但是您可以尝试使用适当的 Http 动词注释您的登录操作吗?我假设您正在使用 aGET来查看登录页面并使用 aPOST来处理登录。

通过[HttpGet]为第一个动作和[HttpPost]第二个动作添加理论,ASP.Net 的路由将根据已使​​用的方法知道要调用哪个动作方法。您的代码应如下所示:

[HttpGet] // for viewing the login page
[ViewSettings(Minify = true)]
public ActionResult Login()
{
  return View("~/Views/Account/Login.cshtml");
}

[HttpPost] // For processing the login
[ViewSettings(Minify = true)]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel model)
{
  return View("~/Views/Account/Login.cshtml");
}

如果这不起作用,请考虑使用两条路线和两个不同命名的操作,如下所示:

routes.MapRoute(
   "DesktopLogin",
   "{controller}/account/login",
   new { controller = "My", action = "Login" }
); 

routes.MapRoute(
   "DesktopLogin",
   "{controller}/account/login/do",
   new { controller = "My", action = "ProcessLogin" }
);

StackOverflow 上已经有其他类似的问题和答案,请查看:How to route GET and DELETE for the same url,还有ASP.Net 文档也可能有所帮助。

于 2013-01-24T19:11:28.177 回答