1
我如何從MyController發送變量到我的視圖phtml?Magento,我怎麼能從MyController發送變量到我的視圖phtml?
Zend框架,我送這樣的:
// myController的
$this->view->name = "Matheus";
或
$this->view->assign('name',"matheus");
//我查看
echo $this->name;
在Magento控制器
,如何我從MyCon發送我的看法是什麼,以及我如何看待變量?
謝謝!