我定義我首頁查看像屬性路由和RouteLink
<body>
<div>
<h1>Home</h1>
@Html.RouteLink("R1", "first", new { user="R1"})
@Html.RouteLink("R2", "second", new { company = "R2" })
</div>
</body>
和登錄控制器像
public class LoginController : Controller
{
// GET: Login
[Route("{user}", Name = "first")]
public ActionResult Index(string user)
{
return View();
}
[Route("{company}", Name = "second")]
public ActionResult Index2(string company)
{
return View();
}
}
RouteConfig
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapMvcAttributeRoutes();
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
我想象在主頁R1和R2分別點擊其路由正確的行爲結果索引和索引2。
但其產生波紋錯誤
當前請求是採用以下的操作方法之間曖昧: System.Web.Mvc.ActionResult指數(System.String)上 類型MVCTest.Controllers.LoginController系統。 Web.Mvc.ActionResult 索引2(System.String)的類型MVCTest.Controllers.LoginController
我不知道爲什麼發生這種情況。
我知道你忙的人,有一些問題'routes'考慮在尋找我的答案來解決你所面臨的問題。 – adricadar