0

控制器视图操作。我在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 文件中显示此控制器功能的输出。?

4

1 回答 1

0

第 1 步:控制器 (IndexController.php) 文件 在索引控制器中,只需加载布局并渲染它。

<?php
class Abc_Example_IndexController extends Mage_Core_Controller_Front_Action
{
    public function indexAction()
    {
        $this->loadLayout();
        $this->renderLayout();
    }
}
?>

第2步:布局(custom.xml)文件将下面给定的代码放入模块的布局文件中。

<?xml version="1.0"?>
<layout version="0.1.0">
   <example_index_index>
       <reference name="content">
           <block type="example/collection" name="collection" template="example/collection.phtml" />
       </reference>
   </example_index_index>
</layout>

这是块的代码,您可以在其中定义集合

 <?php
    class Abc_Example_Block_Collection extends Mage_Core_Block_Template
    {
        public function __construct()
        {
            parent::__construct();
            $stro  = $this->getRequest()->getParams('key');
            if($stro != null){
            $model = Mage::getModel('finder/finder');
            $collection = $model->getCollection()->addFieldToFilter('companyname', $stro);
            $this->setCollection($collection);
        }
   }

现在您可以在 info.phtml 中访问此集合

<?php $collection = $this->getCollection(); ?>

希望对你有帮助

于 2013-10-10T11:56:50.520 回答