我在 phtml 文件中,如何获取当前模板中的子块列表?
答案 0 :(得分:15)
$children = $this->getChild();
检查 app / code / Mage / Core / Block / Abstract.php
中的代码public function getChild($name = '')
{
if ($name === '') {
return $this->_children;
} elseif (isset($this->_children[$name])) {
return $this->_children[$name];
}
return false;
}
因此,如果没有给出名字,它只会返回所有孩子。