KohanaPHP 控制器。我应该将它们分组吗?
我对 OOPHP 和框架完全陌生。
我只是想知道......
我有几个控制器: 仪表板 报名 登录和其他一些
我已将它们放入用户目录中。一切都工作正常,我只是想知道我是否应该将所有内容放在一个控制器中,并且注册等应该是用户控制器的一种方法?或者我的做法正确吗?
问候, 中号
I'm new to OOPHP and frameworks at all.
I'm just wondering...
I have few controllers:
dashboard
signup
login and few more
I've put them into users directory. Everything is working correctly, I'm just wondering if I should put everything in one controller and signup, etc. should be a method of users controller? Or am I doing it correct way?
Regards,
M
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这完全取决于你。您当前拥有的内容可能全部进入一个控制器(在本例中为用户控制器),但它可以构建以请求您已有的分离,例如每个操作的单独控制器,按前缀分组。
kohana 的好处是它允许你按照你想要的方式做这样的事情,没有一个关于将许多“常见”操作放入同一个控制器的指导方针;做你喜欢的事/觉得合适的事。
It's totally up to you. The stuff you currently have could probably all go into one controller (user controller in this case), but it can build up to request the separation you already have, e.g. separate controller for each action, grouped by a prefix.
Good thing about kohana is that it allows you to do stuff like this the way you want to, there isn't a single guideline about putting many 'common' actions into the same controller; do it as you like / find appropriate.