Magento,我如何将变量从 MyController 发送到我的视图 phtml?
我如何将变量从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.