将产品自定义选项值保存到js文件

时间:2012-04-12 15:36:02

标签: javascript magento

我是magento的新手,我正在开发一个使用magento的电子商务网站。我在添加产品时使用自定义选项,现在我只想在保存/编辑产品时将一些自定义选项值(例如:颜色自定义选项的值)保存到js文件中。我应该在哪里添加代码来执行此操作以及如何执有人有想法吗?请与我分享。

1 个答案:

答案 0 :(得分:0)

在config.xml模块中:

<global>
    <events>
        <catalog_product_save_after>
            <observers>
                <yourmodule>
                    <type>singleton</type>
                    <class>yourmodule/observer</class>
                    <method>catalog_product_save_after</method>
                </yourmodule>
            </observers>
        </catalog_product_save_after>
    </events>
</global>

在你的Observer.php中:

class YourNamespace_YourModule_Model_Observer
{
    public function catalog_product_save_after($observer)
    {
        $product = $observer->getProduct();
        //echo "<pre>"; print_r($product->getData()); exit;
        // do something here
    }
}

之后,您将获取所需的值并编写您需要构建的JS文件。

希望这有帮助。

来源:http://blog.chapagain.com.np/magento-event-observer-with-save-before-and-save-after/