ASP.NET MVC 如何不为每个操作创建路由
这可能吗?
由于不需要任何自定义约束或任何东西的特定原因,我不得不用我需要的随机操作来混乱我的路线注册。
我想做一些类似 Admin/Categories/{action} 的操作,其中操作可以是任何内容,控制器是 CategoryController。
这可能吗?
Is this possible?
I'd had to clutter my route registrations with random actions that I need for specific reasons that don't need any custom constraints or anything.
I want to do something like Admin/Categories/{action} where action can be anything and the controller is CategoryController.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您设置管理区域,则将通过 /admin/controller 访问该区域中的类别控制器...
区域,http://msdn.microsoft.com/en-us/library/ee671793.aspx
If you setup an Admin Area, then the categories controller in that area will be accessed via /admin/controller...
Areas, http://msdn.microsoft.com/en-us/library/ee671793.aspx