我希望设置路由以允许以下内容:
/entity/id //id is Guid
/entity/id //id is int32
/entity/actionname //actionname is string matching neither Guid nor Int
简单,我想,这就是RouteConstraints解决的问题:
routes.MapRoute(
name: "entity/id:guid",
template: "{controller}/{id:guid}",
defaults:new{action="Index"});
routes.MapRoute(
name: "entity/id:int",
template: "{controller}/{id:int}",
defaults: new { action = "Index" });
routes.MapRoute(
name: "entity/action",
template: "{controller=home}/{action=index}");
我认为,顺序很重要:更具体的匹配必须在实体/行动路线之前,否则将匹配所有。
但这不起作用。
@Url.Action("", "entity", new { id = Guid.NewGuid() })
结果
entity?id=00000000-0000-0000-0000-000000000000
而不是
entity/00000000-0000-0000-0000-000000000000
我该如何解决?
(我在asp.net Core 1.1上,虽然我相信这个问题对MVC4有效)
答案 0 :(得分:2)
如果您传递操作名称"Index"
或传递null
作为第一个参数,它将生成预期结果。