1

我要尝试的示例代码,使用产品 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
4

2 回答 2

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,然后将相应的参数传递给该函数。

希望这可以帮助你..

于 2013-01-30T05:59:36.533 回答
1

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

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

于 2014-09-25T13:09:10.057 回答