在magento中的方法:getChildHtml() 与getChildChildHtml() 的用法
对这两个方法,看方法名,大致就能明白,下面是使用这个方法名的例子举例,清楚的分析一下这两个方法的使用
1
getChildHtml('a')
加载as=‘a’的block
2
getChildHtml('');
加载所有的子block
3
getChildChildHtml ( 'container1' ,  'b' ,  true ,  true )
加载子block container1以及他的子block(as=‘b’);
4
getChildChildHtml ( 'container1' ,  '' ,  true ,  true )
加载子block container1,以及下面的所有子block。。。!!!

OK!!!!

<?php  echo  $this -> getChildChildHtml ( 'container1' ,  '' ,  true ,  true )  ?>
<?php  echo  $this -> getChildChildHtml ( 'container2' ,  '' ,  true ,  true )  ?>
转载请表明出处: MagentoWater