コントローラービューアクション。私は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 ファイルに表示する方法。