使用magento中的ajax更新minicart中的数量值

时间:2013-05-29 13:42:42

标签: magento

我是magento的初学者。

大家好我需要使用magento中的ajax更新minicart标头中的每个产品的数量值(如flipkart)。

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

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

我已经开始工作了。

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

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           

        }

    });