Virtuemart 2 - 如何使用virtuemart_product_id将项目添加到购物车会话中?

时间:2013-01-30 02:09:50

标签: php function joomla virtuemart cart

我的示例代码尝试,自动添加到产品ID的购物车。 我知道我也需要数量,但我不知道确切的代码。 使用此代码它不起作用。

$array = unserialize($_SESSION['__vm']['vmcart']);   //read the cart session
$products = $array->products;                        //list the products 

if (array_key_exists('53', $products)) {             //if productID 53 then
  $cart = VirtueMartCart::getCart();
  $quantityPost= 1;                                  //set quantity on 1
  $virtuemart_product_id = 1;                        //set product id on 1
  $cart->add(array(1));                              //add into cart product with id 1
  //$tmpProduct = $this->getProduct((int) $virtuemart_product_id,$quantityPost); //?
  echo "Article added!"; }                           //echo Message
else { 
  echo "Nothing added!"; }                           //echo Message

2 个答案:

答案 0 :(得分:2)

将项目添加到购物车的确切方法就像是ajax调用函数。

var data = "quantity[]="+qty+"&virtuemart_product_id[]="+pid
    //data      =   encodeURIComponent(data);
    jQuery.ajax({               

                    type: "GET",
                                    dataType: 'json',
                    url: "index.php?option=com_virtuemart&nosef=1&view=cart&task=addJS",
                    data: data,
                    success: function(data) {
                        alert(data);
                    }
         });

如果您想从php部分进行操作,请转到购物车控制器文件并检查函数addJS,然后将相应的参数传递给该函数。

希望这可以帮到你..

答案 1 :(得分:1)

请使用VirtueMart API进行正确的购物车处理。 http://forum.virtuemart.net/index.php?topic=125870.msg431290#msg431290

简而言之,VirtueMart默认使用jQuery.getJSON调用,这是Ajax函数的简写。所以上述所有内容都没有必要。毫无疑问,它也是不安全的。您应该使用VM API来检索和存储购物车对象。