修订后的问题:我们已将此追踪到自定义添加到购物车方法。我已经完全修改了这个问题。
我正在使用 Magento 版本的网站上工作。1.3.2.4 作为其电子商务平台。我们构建了一个自定义的“添加到购物车”流程,该流程通过 AJAX 请求将多个商品添加到购物车中。在此请求之后,在重定向到“查看购物车”页面之前,浏览器中的 JavaScript 会完成一些后处理。99% 的时间这个过程似乎在 Firefox 和 Safari 中正常运行,但在 IE8 中,该过程失败。将商品添加到购物车时,重定向到“您的购物车”页面后,购物车为空。
并非网站上的所有项目都是通过此 AJAX 流程添加的。只有在通过 AJAX 添加商品之前购物车为空时,才会出现此问题。也就是说,如果通过正常的 Magento 流程添加的商品首先添加到 cat中,那么 AJAX 加入购物车请求总是成功的。Blu 清除 cookie 然后尝试通过 AJAX 添加将在 IE8 上始终失败。
服务器是具有 PHP 5.2.9、eAccelerator 和 Suhosin 的 Apache/PHP 服务器。请索取任何其他信息,我很乐意提供。我们将会话存储在 MySQL 数据库中。
这是我们自定义添加到购物车方法的代码。此代码位于/app/code/core/Mage/Checkout/controllers/CartController.php
:
public function ajaxaddAction()
{
$result = array('success' => true);
try
{
$session = $this->_getSession();
$cart = $this->_getCart();
$products = json_decode($_POST['products'],true);
if(!is_array($products))
{
throw new Exception("Products data not sent");
}
foreach ($products as $product_data)
{
$product = $this->_initProduct($product_data['id']);
if(!$product)
throw new Exception("Product id {$product_data['id']} not found");
$info = array('qty' => $product_data['qty']);
if($product_data['options'])
$info['options'] = $product_data['options'];
$cart->addProduct($product,$info);
}
$cart->save();
$this->_getSession()->setCartWasUpdated(true);
/**
* @todo remove wishlist observer processAddToCart
*/
Mage::dispatchEvent('checkout_cart_add_product_complete',
array('product' => $products[0], 'request' => $this->getRequest(), 'response' => $this->getResponse())
);
$cartItems = $cart->getQuote()->getAllItems();
$result['cart'] = array();
foreach($cartItems as $item)
$result['cart'][] = json_decode($item->toJson());
}
catch (Mage_Core_Exception $e)
{
if ($this->_getSession()->getUseNotice(true)) {
$this->_getSession()->addNotice($e->getMessage());
} else {
$messages = array_unique(explode("\n", $e->getMessage()));
foreach ($messages as $message) {
$this->_getSession()->addError($message);
}
}
$result['success'] = false;
$result['exception'] = $e->getMessage();
}
catch (Exception $e) {
$this->_getSession()->addException($e, $this->__('Can not add item to shopping cart'));
$result['success'] = false;
$result['exception'] = $e->getMessage();
}
header('Content-Type: application/json',true);
ob_end_clean();
echo json_encode($result);
exit();
}
请不要回答“将代码移动到/app/code/local/
目录”。我知道这是一个更好的地方,并且将来会将它移到那里,但是除非您的回答可以解决问题,否则请发表评论。为了获得更快的响应,我开始赏金并希望对这个特定问题有好的答案,而不仅仅是关于集成此代码的更好方法的提示。
如果有任何我可以提供帮助的信息,请告诉我。我们的最后期限很紧...