MVC n级路由构建
我想创建一个包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不使用默认的 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.