0

我是magento的初学者。

大家好,我需要使用magento中的ajax更新minicart header(作为flipkart)中每个产品的数量值。

我需要知道更新数量值的功能。

任何帮助将不胜感激。

4

2 回答 2

1

我已经让它工作了。

请找到以下代码供您参考。

url=jQuery('#minicart_popup').attr('action');
    var myAjax = new Ajax.Request(
    url,
    {
        method: 'post',
        postBody: $('minicart_popup').serialize(),
            parameters : Form.serialize("minicart_popup"),
                onException: function (xhr, e)
        {
            alert('Exception : ' + e);
        },
onComplete: function (xhr)
        {

           // Do your stuff here           

        }

    });
于 2013-06-10T07:43:49.610 回答
0

检查这个扩展它可能有用:

http://www.magento-connect.org/easy-ajax-cart-magento-extensions.html

于 2013-05-30T13:40:35.687 回答