Magento XML 布局

发布于 2024-10-02 13:39:51 字数 49 浏览 2 评论 0 原文

上面的代码中,放置“as=”footer_links”是什么意思?

In the code above, what is the meaning of placing "as="footer_links"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乞讨 2024-10-09 13:39:51

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"); ?>

希望有帮助!

谢谢,

The as="x" syntax defines a name that templates can use to invoke a block. So, for the following:

<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>

Inside of outer_block.phtml, you can invoke this to render inner_block.phtml:

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

Hope that helps!

Thanks,
Joe

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文