2
我在顯示視圖時遇到了問題。當我傳遞var來查看時,視圖不會呈現。Zend Framework,傳遞變量以查看
控制器:
public function indexAction()
{
$branchModel = new Application_Model_Branches();
$branches = $branchModel->getAllBranches();
$this->view->menu = $branches;
}
視圖(index.phtml):
<h2>Menu</h2>
<?php
$this->htmlList($this->menu);
?>
當我嘗試調試$branches
不分配它來查看,一切似乎是確定,但是當我試圖將其推查看,index.phtml不會出現。
問候
你的代碼看起來不錯。如果你在你的index.phtml中var_dump($ this-> menu),這是否工作? – 2010-09-22 18:29:07