MVC n级路由构建

发布于 2024-07-05 12:11:28 字数 277 浏览 6 评论 0原文

我想创建一个包含 N 级类别的产品目录

例如

/Catalog/Category1/Category2/../SubCategoryN/Product/{ProductActions}/{ID} 

  并且同时能够  

  /Catalog/Category1/Category2/../SubCategoryN/{CategoryActions} 
  

这可能吗?如果是,怎么做?

I want to create a productcatalog with N-Level Categories

e.g.

/Catalog/Category1/Category2/../SubCategoryN/Product/{ProductActions}/{ID}

And at the same time be able to 

/Catalog/Category1/Category2/../SubCategoryN/{CategoryActions}

Is that possible and if Yes how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热鲨 2024-07-12 12:11:28

不使用默认的 Route 类,但您可以通过从 RouteBase 派生来创建自己的路由类。 基本上,您最终必须自己完成解析 URL 的所有工作,但您可以使用 Route 中的源代码来帮助您开始。

Not with the default Route class, but you can make your own route class by deriving from RouteBase. You basically end up having to do all the work yourself of parsing the URL, but you can use the source from Route to help you get started.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文