MVC子控制器
我的应用程序具有以下模块:
/groups/{id_group} --> GroupController.php
我的问题是,
/groups/{id_group}/events/{id_event}
哪个控制器应该处理这个?
My application has the following module:
/groups/{id_group} -- > GroupController.php
My question is this,
/groups/{id_group}/events/{id_event}
Which controller should handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 groups/n/ 作为路由,您将需要使用框架的路由系统来路由到事件控制器。否则,它是组控制器。
If you are using groups/n/ as routing, you would want to use your framework's routing system to route to the event controller. Otherwise, it is the groups controller.
如果您想坚持仅使用第一个参数作为控制器,请考虑使用其他参数作为查询字符串的纯粹部分,例如
并使用控制器将其路由到正确的位置,例如
If you want to stick to just using the first parameter as the Controller, then consider using the further parameters as purely parts of the query string e.g
and use the controller to route it to the correct place e.g.