在 Zend Framework 中创建大量操作

发布于 2024-12-12 02:55:25 字数 273 浏览 0 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尘曦 2024-12-19 02:55:26

在 Web 应用程序中,代码大小带来的开销应该可以忽略不计。只需组织您的控制器,使它们可读且可维护。

In a web application, the overhead from code size should be negligible. Just organize your controllers so they're readable and maintainable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文