asp.net MVC 4新項(xiàng)目中創(chuàng)建area后,往往HomeController與area的HomeController路由發(fā)生混淆,需要手工設(shè)置一些地方避免mvc無(wú)法識(shí)別默認(rèn)路由的狀況。
無(wú)廢話具體步驟:
1. 檢查早Global.asax和/App_Start/RouteConfig.cs中是否已經(jīng)自動(dòng)添加了AreaRegistration.RegisterAllAreas();如不存在,進(jìn)入第2步,否則第3步
2. 在/App_Start/RouteConfig.cs中,添加AreaRegistration.RegisterAllAreas();
public static void RegisterRoutes(RouteCollection routes){ routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); AreaRegistration.RegisterAllAreas(); routes.MaPRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }, namespaces: new[] { "TestMvcapplication.Controllers" } );}
3. 在/App_Start/RouteConfig.cs中,檢查routes.MapRoute()中是否顯性指定了默認(rèn)Controller的namespace。
namespaces: new[] { "TestMvcApplication.Controllers" }
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注