当前位置 : 主页 > 网页制作 > xml >

Magento XML布局

来源:互联网 收集:自由互联 发布时间:2021-06-13
在上面的代码中,放置“as =”footer_links“是什么意思? as =“x”语法定义模板可用于调用块的名称.因此,对于以下内容: block type="text/html" name="outer_block" as="outer_block" template="outer_block.p
在上面的代码中,放置“as =”footer_links“是什么意思? as =“x”语法定义模板可用于调用块的名称.因此,对于以下内容:

<block type="text/html" name="outer_block" as="outer_block" template="outer_block.phtml">
    <block type="text/html" name="inner_block" as="inner_block" template="inner_block.phtml">
</block>

在outer_block.phtml中,您可以调用它来渲染inner_block.phtml:

<?php print $this->getChildHtml("inner_block"); ?>

希望有所帮助!

谢谢,乔

网友评论