magento 中的新模块不更新布局

发布于 2024-09-30 23:54:18 字数 1559 浏览 1 评论 0原文

我正在尝试在 magento 中创建一个新的自定义模块,但布局未加载。它始终加载在 page.xml 文件中定义为默认值的三列布局。我认为它没有考虑为我的模块操作设置的布局,即使它在 config.xml 文件中提到,就像这样

<frontend>
        <routers>
            <mynamespace_test>
                <use>standard</use>
                <args>
                    <module>Mynamespace_Test</module>
                    <frontName>test</frontName>
                </args>
            </mynamespace_test>
        </routers>  
  <layout>
          <updates>
              <test><file>test.xml</file></test>
          </updates>
      </layout>
    </frontend>

- 我的 test.xml 看起来像这样: -

<?xml version="1.0"?>
<layout version="0.1.0">
    <test_index_index translate="label">
        <label>Test module</label>
        <reference name="root">
            <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
        </reference>     
        <reference name="content">
            <block type="test/this" name="test.this" template="test/test.phtml" />
        </reference>
    </test_index_index>
</layout>

我的控制器定义如下: -

class mynamespace_Test_IndexController extends Mage_Core_Controller_Front_Action
{
 function indexAction()
 {
  $this->loadLayout();
        $this->renderLayout();
 }

}

请帮忙!我缺少什么。 谢谢

I am trying to create a new custom module in magento but the layout is not loading. It always load three column layout which is defined as a default in page.xml file. I think it is not considering the layout set for my module action even if it is mentioned in the config.xml file like this-

<frontend>
        <routers>
            <mynamespace_test>
                <use>standard</use>
                <args>
                    <module>Mynamespace_Test</module>
                    <frontName>test</frontName>
                </args>
            </mynamespace_test>
        </routers>  
  <layout>
          <updates>
              <test><file>test.xml</file></test>
          </updates>
      </layout>
    </frontend>

and my test.xml looks like this:-

<?xml version="1.0"?>
<layout version="0.1.0">
    <test_index_index translate="label">
        <label>Test module</label>
        <reference name="root">
            <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
        </reference>     
        <reference name="content">
            <block type="test/this" name="test.this" template="test/test.phtml" />
        </reference>
    </test_index_index>
</layout>

and my controller is defined like this:-

class mynamespace_Test_IndexController extends Mage_Core_Controller_Front_Action
{
 function indexAction()
 {
  $this->loadLayout();
        $this->renderLayout();
 }

}

Please help! what I am missing.
Thanks

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

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

发布评论

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

评论(2

用心笑 2024-10-07 23:54:18

是的,我成功了。在指向其他模块的布局文件后,我明白布局文件不存在问题。问题是在为模块定义路由器时提到了命名空间:

我更新了这段代码:-

<routers>
            <mynamespace_test>
                <use>standard</use>
                <args>
                    <module>Mynamespace_Test</module>
                    <frontName>test</frontName>
                </args>
            </mynamespace_test>
        </routers>  

<routers>
            <test>
                <use>standard</use>
                <args>
                    <module>Mynamespace_Test</module>
                    <frontName>test</frontName>
                </args>
            </test>
        </routers> 

并且它工作正常。

谢谢。

Yes, I got it working. I understood the problem is not there with layout file after pointing the layout file of some other module. The thing is wrong with this is mentioning namespace while defining router for module:

I updated this block of code:-

<routers>
            <mynamespace_test>
                <use>standard</use>
                <args>
                    <module>Mynamespace_Test</module>
                    <frontName>test</frontName>
                </args>
            </mynamespace_test>
        </routers>  

to

<routers>
            <test>
                <use>standard</use>
                <args>
                    <module>Mynamespace_Test</module>
                    <frontName>test</frontName>
                </args>
            </test>
        </routers> 

and it worked fine.

Thanks.

﹉夏雨初晴づ 2024-10-07 23:54:18

您将 test.xml 保存在哪里?它需要位于当前活动的主题中:

app/design/frontend/default/activetheme/layout/test.xml

我还建议您安装 Alan Storm 博客中的 LayoutViewer 扩展,以便您可以调试哪些 xml 更新正在插入到布局中。

Where have you saved test.xml? It needs to be in the currently active theme:

app/design/frontend/default/activetheme/layout/test.xml

I also recommend that you install the LayoutViewer extension from Alan Storm's blog so that you can debug which of your xml updates are being inserted into the layout.

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