我想在项目的下拉导航中添加一个分隔符(例如“---”或实线)。我使用路由配置如下构建导航 - 请参阅下面的评论分隔符应该去的地方。
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Main", action = "Index", id = UrlParameter.Optional }
);
routes.MapNavigationRoute<MyController>("Dropdown", c => c.Index(), "", false, true, "")
.AddChildRoute<MyController>("Option 1", c => c.Option1(), "", true, true, "")
// how to add a separator here???
.AddChildRoute<MyController>("Option 2", c => c.Option2(), "", true, true, "")
;
答案 0 :(得分:0)
我不知道是否有内置的。我们手动创建分隔符。在你的情况下,像这样
.AddChildRoute<MyController>("--------", "", "", true, true, "")