在 Zend Framework 中创建大量操作
我使用 Zend 框架。
我有来自控制器的 3 个请求。
我可以为其中 3 个请求创建一个操作,或者为其中 3 个请求创建 3 个操作(3 个请求相同的功能)。
如果我创建一个动作,我必须检查一些条件。我的成长之路很难走 但如果我创建 3 个操作,这有关系吗?
我了解了 OOP 中的类。 当计算机运行类中的代码时,属性保存在内存中,方法保存在计算机上的虚拟表中。我认为如果我的动作少一些,就能带来更好的表现。
我应该创建 3 个操作还是 1 个操作?
I work with the Zend Framework.
I have 3 requests from a controller.
I can create an action for 3 of those requests or create 3 actions for 3 of those requests (3 requests same function).
If I create an action, I must check some conditions. It's hard for me to develop,
but if I create 3 actions, does that matter?
I learned about classes in OOP.
When computers run code in a class, properties are saved in memory, and the method is saved in a virtual table on the computer. I think if I have less actions, it can give better performance.
Should I create 3 actions or 1 action?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Web 应用程序中,代码大小带来的开销应该可以忽略不计。只需组织您的控制器,使它们可读且可维护。
In a web application, the overhead from code size should be negligible. Just organize your controllers so they're readable and maintainable.