2

我在这里遇到了一个小问题,我已经在网上搜索:

我在 zf2 中有一个 Formcollection。我在视图中使用 $this->formCollection()->renderTemplate() 来获取生成的模板。

如何从 zf2 替换标准模板?

问候

4

1 回答 1

-3

在标准 zf2 渲染中,您可以执行以下操作:

// Blog section
$blogView = new ViewModel();    
$blogView->setTemplate('pages/index/blog.phtml'); // change the default template
return $blogView;
于 2013-07-29T12:07:10.040 回答