控制器视图操作。我在indexController中使用了以下函数
public function viewAction($string){
$stro = $this->getRequest()->getParams('key');
if($stro != null){
$model = Mage::getModel('finder/finder');
$collection = $model->getCollection()->addFieldToFilter('companyname', $stro);
$this->getResponse()->setBody($block->toHtml());
}
$this->loadLayout();
$this->renderLayout();
在前端布局字段 finder.xml 中,我调用了以下代码;
<finder_index_view>
<reference name="content">
<block type="finder/info" name="finder" template="finder/info.phtml" />
</reference>
</finder_index_view>
如何在 info.phtml 文件中显示此控制器功能的输出。?