0

我创建了一个可在管理员中访问的模块。在该模块中,我在 .phtml(template) 文件中创建了一个表单,并在通过 javascript 对其进行验证后,我想将数据库中的值保存在 products 表中。我搜索了很多,但我无法调用脚本!请指导我如何将调用发送到 php 脚本并成功获取数据,我必须创建哪些模块、控制器等来做到这一点?这是我进行ajax调用的模块结构,

code->local->myspace->mymodule->(model,controllers,etc,helper) 我在 adminhtml->default->default->templates 中包含了模板文件。

配置.xml:

<?xml version="1.0"?>

<config>
    <modules>
        <Inchoo_CoffeeFreak>
            <version>0.1.0</version>
        </Inchoo_CoffeeFreak>
    </modules> 

    <global>
        <blocks>
            <coffefreakblock1>
                <class>Inchoo_CoffeeFreak_Block</class>
            </coffefreakblock1>  
            <coffefreakblock2>
                <class>Inchoo_CoffeeFreak_Block_EditSpecial</class>
            </coffefreakblock2> 
        </blocks>
        <helpers>
            <coffefreakhelper1>
                <class>Inchoo_CoffeeFreak_Helper</class>
            </coffefreakhelper1>
        </helpers>  
    </global>    






    <admin>
        <routers>

           <samplerouter1>
                <use>admin</use>
                <args>
                    <module>Inchoo_CoffeeFreak_AdminControllersHere</module>
                    <frontName>admin</frontName>

                    <modules>
                        <sintax after="Inchoo_CoffeeFreak_AdminControllersHere">Mage_Adminhtml</sintax>
                    </modules>
                </args>
           </samplerouter1>           
        </routers>      
    </admin>





    <adminhtml>


        <menu>
             <mymenu1 translate="title" module="coffefreakhelper1">
                <title>PrintInfo</title>
                <sort_order>20</sort_order>
                <children>
                <!-- Note the misleading "module" attribute. 
                    It actualy refers to one of the declared helpers -->

                    <myitem1 translate="title" module="coffefreakhelper1">
                        <title>Add configuration</title>
                        <action>samplerouter1/FreakOut</action>
                        <sort_order>1</sort_order>                        
                    </myitem1>

                    <myitem2 translate="title" module="coffefreakhelper1">
                        <title>Change configuration</title>
                        <action>samplerouter1/FreakOut2</action>
                        <sort_order>2</sort_order>                        
                    </myitem2>                    


                </children>
             </mymenu1>
        </menu>
    </adminhtml>  
</config>
4

1 回答 1

2

您应该能够在产品管理员中完成大部分您尝试做的事情,但是如果您想创建自己的自定义模块来保存产品数据,那么您需要做这样的事情

app/code/local/myspace/mymodule/controllers/IndexController.php

<?php
class Myspace_Mymodule_IndexController extends Mage_Core_Controller_Front_Action
{
    public function SaveAction()
    {
        $product_id = Mage::app()->getRequest()->getParam('product_id')
        $product = Mage::getModel('catalog/product')->load($product_id);
        $product->setName('new_name');
        .....
        $product->save()
    }
}

看看@http ://www.phpzag.com/create-custom-module-with-custom-database-table/

在您的 phtml 文件中,您需要将您的 ajax 操作发布到 www.site.com/admin/mymodule/index/save

于 2012-12-05T15:34:46.937 回答