我如何获得对当前 Mage_Core_Controller_Varien_Action 或后代的引用
我需要从块的代码中引用“当前”运行操作。
即我有一个 $this,它是 Mage_Core_Block_Template 的后代,我需要一种方法来调用当前请求的 Mage_Core_Controller_Front_Action 实例上的方法。
我希望这已经足够清楚了。
I need a reference to the "current" running action from the code of a block.
i.e. I have a $this which is a descendant of Mage_Core_Block_Template and I need a way to call methods on the an instance of Mage_Core_Controller_Front_Action for the current request.
I hope this was clear enough.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想到了几件事:
此外,每个块都扩展了 Mage_Core_Block_Abstract 并具有以下方法:
这会返回一个 Mage_Core_Controller_Request_Http,其中包含 getControllerModule() 或 getModuleName() 等各种方法。
华泰
Couple of things come to mind:
Also every block since all of them extends the Mage_Core_Block_Abstract have the following method:
This return a Mage_Core_Controller_Request_Http which contains various methods like getControllerModule() or getModuleName().
HTH
发现我可以使用 $this->getAction()
Found out that I can use $this->getAction()