我有一个页面,其中包含一些以编程方式包含的模板块,如下所示:
public function indexAction() {
$this->loadLayout();
$block = $this->getLayout()
->createBlock('core/template')
->setTemplate('somefolder/sometemplate.phtml');
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();
}
我想在sometemplate.phtml中放入$this->getChildHtml('somechild')以插入另一个块。
我试过
$box = $this->getLayout()
->createBlock('page/html')
->setTemplate('somefolder/somechild.phtml');
$block->append($box);
但它没有用。我该怎么做?