Magento块和布局混乱

时间:2017-02-04 09:48:21

标签: magento-1.9

我是Magento的新人。现在我试图了解块和布局如何工作。这是我的布局文件`

<layout>
    <custom_index_getallfaq>
        <reference name="head">
                <action method="setTitle">
                    <arg>All FAQ's</arg>
                </action>
        </reference>

        <reference name="content">
            <block type="custom/type" name="root" template="view.phtml" />
        </reference>
    </custom_index_getallfaq>

    <custom_index_addnewfaq>
        <reference name="head">
            <action method="setTitle">
                <arg>All FAQ's</arg>
            </action>
        </reference>
        <reference name="content">
            <block type="custom/type" name="root" template="form.phtml" />
        </reference>
    </custom_index_addnewfaq>
</layout>`

第一个处理程序正常工作。它显示模板view.phtml     问题是第二个处理程序对我来说意外。它显示我的网站的索引页面而不是form.phtml 谢谢你的帮助

0 个答案:

没有答案