代码之家  ›  专栏  ›  技术社区  ›  Josh Andreas Rehm

magento自定义添加到购物车进程不工作

  •  5
  • Josh Andreas Rehm  · 技术社区  · 14 年前

    修改后的问题 :我们已跟踪到一个自定义的“添加到购物车”方法。我已经彻底修改了这个问题。

    我在一个使用magento ver的网站上工作。1.3.2.4作为其电子商务平台。我们构建了一个自定义的“添加到购物车”过程,通过Ajax请求将多个项目添加到购物车中。在这个请求之后,在重定向到“查看购物车”页面之前,在浏览器中的javascript中执行一些后处理。99%的情况下,这个进程在Firefox和Safari中似乎可以正常运行,但在IE8中,进程失败了。将项目添加到购物车时,在重定向到“您的购物车”页面后,购物车为空。

    并不是网站上的所有项目都是通过这个Ajax进程添加的。只有当购物车为空时,通过Ajax添加项目时才会出现此问题。也就是说,如果通过正常magento过程添加的项目添加到cat中 第一 ,然后Ajax添加到购物车请求总是成功的。BLU清除cookies,然后尝试通过Ajax添加将在IE8上始终失败。

    服务器是一个apache/php服务器,具有php 5.2.9、eaccelerator和suhosin。请要求任何附加信息,我很乐意提供。我们将会话存储在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/ 目录”。我知道这是一个更好的地方,并将在未来移动到那里,但除非你的答案将解决这个问题,请发表评论。为了得到更快的响应,我开始提供奖励,并希望对这个特定问题有好的答案,而不仅仅是关于如何更好地集成此代码的提示。

    如果有任何信息我可以提供帮助,请告诉我。我们的最后期限很紧…

    3 回复  |  直到 13 年前
        1
  •  4
  •   Josh Andreas Rehm    13 年前

    我花了10个多小时在这上面。目前我相信我有一个 部分解 . 但我不知道为什么这个解决方案有效…

    似乎Magento需要重定向才能完成“添加到购物车”过程。所以不是

    header('Content-Type: application/json',true);
    ob_end_clean();
    echo json_encode($result);
    exit();
    

    我将JSON存储在会话中并重定向到新的购物车操作:

    $this->_getSession()->setCartJsonResult(json_encode($result));
    $this->_redirect('checkout/cart/postajaxadd');
    

    然后该操作将转储JSON数据

    public function postajaxaddAction()
    {
        $session = $this->_getSession();
    
        header('Content-Type: application/json',true);
        ob_end_clean();
        echo $this->_getSession()->getCartJsonResult();
        exit();
    }
    

    有时还是会失败 但是,现在我的javascript代码没有得到它期望的JSON数据,并且能够重复请求。第二个请求比第一个请求更成功… 但是,仍然存在这样的情况:无论什么情况,Ajax请求都会失败。

        2
  •  3
  •   Chris Norton    14 年前

    不确定这是否导致了您遇到的问题,但是做JSON响应的更好方法是使用现有的“magento/zend方法”。

    而不是:

    header('Content-Type: application/json',true);
    
    ob_end_clean();
    
    echo json_encode($result);
    
    exit();
    

    用途:

    $this->getResponse()->setHeader('Content-Type', 'application/json', true)->setBody(json_encode($result));
    
        3
  •  1
  •   Chris Norton    14 年前

    当会话存储耗尽且无法创建新会话时,我们在向购物车添加内容时遇到问题。如果您正在磁盘或memcache中存储会话,请检查是否已分配了足够的空间。