从 Zend Framework 中的另一个 Action Helper 调用另一个 Action Helper
是否可以从另一个动作助手调用另一个动作助手。实际上,我创建了一个动作助手,它使用 preDispatch 钩子执行一些与布局相关的内容。现在我想打电话 ajaxContext< /a> 在我的第一个操作助手的 preDispatch 方法中。有什么想法我该如何实现这一目标?
Is it possible to call another action helper from another action helper. Actually I have created an action helper which preform some layout related stuff using preDispatch hook. Now I want to call ajaxContext within my first action helper's preDispatch method. any ideas how can I achieve this?
您可以使用 Zend_Controller_Action_HelperBroker 来获取其他助手。
You can use the Zend_Controller_Action_HelperBroker to fetch other helpers.