gpt4 book ai didi

php - Zend 中基本 Controller 的缺点是什么?

转载 作者:可可西里 更新时间:2023-10-31 23:34:20 24 4
gpt4 key购买 nike

我在某处读到说使用基础 Controller 不好,而且缺点多于优点。那个人说你应该使用插件。

我需要的是在每个 Action 从请求中获取“lang”变量并将其传递给当前 Action 之前。我现在所做的是制作一个带有 preDispatch 的基础 Controller ,它从请求中获取它并通过 $this 传递它(任何其他 Controller 从基础扩展)。

如果我要使用插件,我应该如何实现它?我应该吗?

编辑:找到我读到的基本 Controller 是邪恶的地方:Sending variables to the layout in Zend Framework评论最后一个答案。请注意,我的问题并不相似(我需要传递给一个 Action ,而不是布局)。

编辑2:关于如何实现的答案,您能否也解释一下为什么使用基本 Controller 不好?

编辑3:似乎无法让它发挥作用。我已经完成了:在 controllers 文件夹中创建了一个 helpers 目录,添加到初始化程序中在该文件夹中创建了一个名为 LangHelper.php 的文件,并创建了一个类 Controller_Helper_Lang extends Zend_Controller_Action_Helper_Abstract。为什么它还不起作用? (也许我需要添加一次要求或其他什么?)

编辑4:我得到的是:

Zend_Loader_PluginLoader_Exception: Plugin by name 'Lang' was not found in the registry; used paths: Controller_Helper_: ../application/default/controllers/helpers/;../application/admin/controllers/helpers/ Zend_Controller_Action_Helper_: Zend/Controller/Action/Helper/ in C:\wamp\www\EfCom\library\Zend\Loader\PluginLoader.php on line 412

最佳答案

您应该使用 Action Helpers ,不是插件。

这样,您可以执行例如 $this->_helper->getLang() 以在您的操作中获取语言(使用 GetLang 作为您的操作助手) ,而不是使用类属性。

插件可用于控制请求的路由(例如添加 ACL 过滤)。这不是您想在此处执行的操作。

您的助手的示例代码:

class MyModule_Controller_Helper_GetLang extends Zend_Controller_Action_Helper_Abstract {
/**
* direct() is the default method called
* when you use $this->_helper->getLang()
*/
public function direct() {
$lang = /*get you lang here*/;
return $lang;
}
}

教程:

我建议将您的助手放在/application/controllers/helpers 中。看官方推荐directory layout .他们说:

controllers/helpers/ - These directories will contain action helpers. Action helpers will be namespaced either as "Controller_Helper_" for the default module or "Controller_Helper" in other modules.

更新:
在了解 Action 助手之前,我已经使用了一个基本 Controller ,它可以完成这项工作,但可以说助手正是为此而存在的。这是一个完全为您想要做的事情而创建的概念,具有一些优点(例如延迟加载,以便仅在您使用它时加载帮助程序)。想象一下,一周后您需要添加另一个变量,但只在某些页面而不是所有页面中需要。使用基本 Controller ,每次都会加载这些变量。你更应该学习如何正确地做它(与帮助者一起),这样你以后就可以充分利用它。这将使您的代码保持整洁有序。 Controller 只是 Controller ,助手只是助手

关于php - Zend 中基本 Controller 的缺点是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6545057/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com