我想在SomeController中使用AnotherController名称。 但是,RoutePrefix属性只能由Controller级别声明。
准备以下内容。
namespace KRSMART.Controllers
{
public class SomeController : Controller
{
/* localhost:0000/Some/Index */
public ActionResult Index()
{
return View();
}
/* I want Url */
/* localhost:0000/Another/Test */
[Route("Another/Index")]
public ActionResult Test()
{
return View();
}
}
}
它没有按照我的意愿运作。
我知道我可以创建一个新的控制器来做,但我不想这样做。
我想从熟悉路线的人那里得到一些建议。
答案 0 :(得分:2)
您需要在默认路由寄存器
之前添加routes.MapMvcAttributeRoutes();
您的RegisterRoutes
功能应该是,
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 }
);
}