Magento,我如何将变量从 MyController 发送到我的视图 phtml?

发布于 2024-12-06 09:45:51 字数 383 浏览 1 评论 0原文

我如何将变量从 MyController 发送到我的视图 phtml?

Zend 框架,我像这样发送:

// MyController

$this->view->name = "Matheus";

$this->view->assign('name',"matheus");

// Magento Controller 中的我的视图

echo $this->name;

,我如何从 MyController 发送到我的视图,以及如何在我的视图中看到变量?

谢谢!

how i can send variable from MyController to my view phtml?

Zend framework, i send like this:

// MyController

$this->view->name = "Matheus";

or

$this->view->assign('name',"matheus");

// My View

echo $this->name;

in Magento Controller, how i send from MyController to my view, and how i can see in my view the variable?

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夏日落 2024-12-13 09:45:51

Magento MVC 与 Zend MVC 不同,它是基于配置的。 magento 中的视图由两部分组成 - 块(类)和模板以及 xml 文件中的布局更新。它无法用 2 个词来描述,您应该阅读此 文章

Magento MVC is different to Zend one, it is configuration based. View in magento consists of 2 parts - block (class) and template plus layout update in xml file. It can't be described in 2 words, you should read this article.

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