我是magento的初学者。
大家好,我需要使用magento中的ajax更新minicart header(作为flipkart)中每个产品的数量值。
我需要知道更新数量值的功能。
任何帮助将不胜感激。
我是magento的初学者。
大家好,我需要使用magento中的ajax更新minicart header(作为flipkart)中每个产品的数量值。
我需要知道更新数量值的功能。
任何帮助将不胜感激。
我已经让它工作了。
请找到以下代码供您参考。
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
}
});