我刚刚创建了一个模块,并将其放在我的布局文件中:
<?xml version="1.0"?>
<layout version="0.1.0">
<filteredproducts_index_index>
<reference name="root">
<action method="setTemplate">
<template>page/2columns-left.phtml</template>
</action>
</reference>
<reference name="content">
<block type="filteredproducts/myblock" name="myblock" template="test.phtml"/>
</reference>
</filteredproducts_index_index>
</layout>
现在由于某种原因,我在参考名称中放置了什么块?&#34;内容&#34;标签。该块显示两次。
test.phtml:
<?php
echo "test";
?>
页面上显示的文字是testtest。 所以内容必须加载两次由于某种原因我似乎无法弄清楚如何。 任何帮助表示赞赏。