1

我正在根据这篇文章创建简单的 Magento 模块。
我的管理员新项目操作有问题。

<?php

class Namespace_Gallery_Adminhtml_GalleryController extends Mage_Adminhtml_Controller_Action
{
protected function _initAction()
{
    $this->loadLayout()
        ->_setActiveMenu('namespace/gallery');

    return $this;
}

public function indexAction()
{
    $this->_initAction();
    $this->_addContent($this->getLayout()->createBlock('gallery/adminhtml_gallery'));
    $this->renderLayout();
}

public function editAction()
{
    echo 'edit';
}

public function newAction()
{
    $this->_forward('edit');
}

项目 indexAction 工作并显示我的项目,当我单击任何项​​目时,它会按预期返回“编辑”。不幸的是,单击“添加新项目”会给出 404(网址很好)。

有任何想法吗?

4

2 回答 2

0

根据您调用请求的自定义操作的方式,您可能需要在 config.xml 中添加一些内容

假设这就是你所说的:http(s)://yourdomain.com/index.php/gallery/admin_gallery/new

然后将以下内容添加到<admin><routers>-node内的 config.xml

<gallery>
    <use>admin</use>
    <args>
        <module>Namespace_Gallery</module>
        <frontName>gallery</gallery>
    </args>
</gallery>
于 2013-04-04T09:25:06.073 回答
0

您需要添加 adminhtml 布局更新 xml:

<?xml version="1.0"?>
<layout>
    <[module]_adminhtml_[controller]_index>
        <reference name="content">
                <block type="[module]/adminhtml_[frontname]" name="[module]_grid"/>
        </reference>
    </[module]_adminhtml_[controller]_index>
</layout>

当然需要在 config.xml 中设置

<adminhtml>
    <layout>
        <updates>
            <[module]>
                <file>[module].xml</file>
            </[module]>
        </updates>
    </layout>
</adminhtml>

您可能需要在 editAction() 中加载/渲染布局

于 2012-09-17T15:28:33.080 回答