ASP MVC 5属性路由不触发



我正在尝试在一个新项目中使用属性路由,但我无法正常工作。

这是我到目前为止所拥有的:

[RoutePrefix("Product")]
public class ProductController : Controller
{
    [Route("{id}/{title}", Name = "Product Details")]
    public ActionResult Index(int id = 0, string title = "")
    {
        Product p = Product.Get(id);
        return View(p);
    }
}

这是我的RouteConfig.cs:

public class RouteConfig
{
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
        //routes.MapRoute(
        //    "Product Details",
        //    "Product/{id}/{title}",
        //    new { controller = "Product", action = "Index", id = UrlParameter.Optional, title = UrlParameter.Optional }
        //);
        routes.MapRoute(
            name: "DefaultIndex",
            url: "{controller}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

    }
}

如果我删除路由属性并取消注释我的RouteConfig.cs中的第一个路线,则可以使用路由属性。

知道为什么它无法正常工作?

我要使用的URL是:http://www.mydomain.com/product/12345/productname

编辑,这是我的application_start()

protected void Application_Start()
{
    AreaRegistration.RegisterAllAreas();
    RouteConfig.RegisterRoutes(RouteTable.Routes);
    BundleMobileConfig.RegisterBundles(BundleTable.Bundles);
}

看起来像将{id}视为动作。

尝试以下操作:

[Route("{id:int}/{title}", Name = "Product Details")]

或此

[Route("Product/{id}/{title}", Name = "Product Details")]

相关内容

  • 没有找到相关文章

最新更新