1

我正在为 Magento 开发 AJAX 购物车。

我对扩展不感兴趣,因为这个购物车必须是作者制作的,这是非常定制的。

你能告诉我获取购物车中的总物品总数和物品数量等信息的最佳方式是什么?

以最快和最相关的方式。

我可以创建外部 php 文件,该文件将从用户的会话中收集此信息,然后在每次用户添加或删除产品时将其显示在标题上的 AJAX 脚本。

我认为这不是最好的解决方案。

是否有一些 API,或者最好的方法是什么?

谢谢,

亚当

4

1 回答 1

4

如果您指的是某种小型购物车,我已经使用以下代码在多个项目中完成了此操作:

<?php

// gets the current session of the user
Mage::getSingleton('core/session', array('name'=>'frontend'));

// loads all the products in the current users cart
$items = Mage::getSingleton('checkout/session')->getQuote()->getAllVisibleItems();

// counts the total number of items in cart
$totalItems = count($items);

// you can loop through all the products, and load them to get all attributes
foreach( $items as $item ) {
    $_product = Mage::getModel('catalog/product')->loadByAttribute('sku', $item->getSku());
    // display code, etc
}


// gets the subtotal of the current cart
$subTotal = Mage::getModel('checkout/cart')->getQuote()->getSubtotal();

?>

不确定这是否是处理迷你购物车功能的最佳方式,但它在过去对我来说非常有用,并且是高度可定制的。

于 2013-08-07T17:12:17.863 回答