如何在 ASP.NET MVC 中自定义目录结构?
我开始工作的项目将有几十个控制器,因此最好将它们构建为逻辑目录和各自的命名空间,例如“Controllers/Admin/”、“Controllers/Warehouse/Supplies/”等。
ASP.NET MVC 是否支持嵌套控制器目录和命名空间? 如何管理到这些控制器的路由?
The project I'm starting to work at will have several dozens of controllers, so it would be nice to structure them into logical directories and respective namespaces, like "Controllers/Admin/", "Controllers/Warehouse/Supplies/", etc.
Does ASP.NET MVC support nested controller directories and namespacing?
How do I manage routes to those controllers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将控制器放在任何地方; 路由不依赖于控制器的存储位置。 它将能够找到应用程序中实现 IController 的任何类。
我通常将控制器放在一个单独的项目中,例如 MyProject.Frontend 项目,以及 MyProject.Frontend.Application 项目,它是带有视图等的实际入口点 Web 项目。
You can put the controllers anywhere; routes do not depend on where a controller is stored. It will be able to find any class that implements IController within your application.
I usually keep my controllers in a separate project, f.ex a MyProject.Frontend project, alongisde a MyProject.Frontend.Application project which is the actual entrypoint web project with the views etc.