我如何获得对当前 Mage_Core_Controller_Varien_Action 或后代的引用

发布于 2024-10-17 08:33:28 字数 158 浏览 2 评论 0原文

我需要从块的代码中引用“当前”运行操作。

即我有一个 $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 技术交流群。

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

发布评论

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

评论(2

猥琐帝 2024-10-24 08:33:28

我想到了几件事:

Mage::app()->getFrontController()

此外,每个块都扩展了 Mage_Core_Block_Abstract 并具有以下方法:

$this->getRequest()

这会返回一个 Mage_Core_Controller_Request_Http,其中包含 getControllerModule() 或 getModuleName() 等各种方法。

华泰

Couple of things come to mind:

Mage::app()->getFrontController()

Also every block since all of them extends the Mage_Core_Block_Abstract have the following method:

$this->getRequest()

This return a Mage_Core_Controller_Request_Http which contains various methods like getControllerModule() or getModuleName().

HTH

昔梦 2024-10-24 08:33:28

发现我可以使用 $this->getAction()

Found out that I can use $this->getAction()

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