正在修改我的添加到购物车功能的代码,如果产品已经存在于购物车中,我在更新数量时遇到了一些困难。 它只会为添加到购物车的第一个产品正确更新。
我的更新添加到购物车代码:
// -------------------------
// Adding item
// -------------------------
case "add":
if(!empty($_POST["quantity"])) {
$productByCode = $db_handle->runQuery("SELECT * FROM products WHERE product_id='" . $_GET["product_id"] . "'");
$itemArray = array($productByCode[0]["product_id"]=>array('product_name'=>$productByCode[0]["product_name"], 'product_description'=>$productByCode[0]["product_description"],
'product_id'=>$productByCode[0]["product_id"], 'quantity'=>$_POST["quantity"], 'product_price'=>$productByCode[0]["product_price"],'image'=>$productByCode[0]["image"]));
if(!empty($_SESSION["cart_item"])) {
if(in_array($productByCode[0]["product_id"], array_keys($_SESSION["cart_item"]))) {
foreach($_SESSION["cart_item"] as $k => $v) {
if($productByCode[0]["product_id"] == $k) {
if(empty($_SESSION["cart_item"][$k]["quantity"])) {
$_SESSION["cart_item"][$k]["quantity"] = 0;
}
$_SESSION["cart_item"][$k]["quantity"] += $_POST["quantity"];
}
}
} else {
$_SESSION["cart_item"] = array_merge($_SESSION["cart_item"],$itemArray);
}
} else {
$_SESSION["cart_item"] = $itemArray;
}
}
break;
我在代码中遗漏了什么吗?
感谢。 斯坦。
修改: 更新的代码不起作用:
// -------------------------
// Adding item
// -------------------------
case "add":
if(!empty($_POST["quantity"])) {
$productByCode = $db_handle->runQuery("SELECT * FROM products WHERE product_id='" . $_GET["product_id"] . "'");
$itemArray = array($productByCode[0]["product_id"]=>array('product_name'=>$productByCode[0]["product_name"], 'product_description'=>$productByCode[0]["product_description"],
'product_id'=>$productByCode[0]["product_id"], 'quantity'=>$_POST["quantity"], 'product_price'=>$productByCode[0]["product_price"],'image'=>$productByCode[0]["image"]));
if(!empty($_SESSION["cart_item"])) {
if(in_array($productByCode[0]["product_id"], array_keys($_SESSION["cart_item"]))) {
foreach($_SESSION["cart_item"] as $k => $v) {
if($productByCode[0]["product_id"] == $k) {
if(empty($_SESSION["cart_item"][$k]["quantity"])) {
**foreach($_SESSION["cart_item"] as $k =>&$v){
$_SESSION["cart_item"][$k]["quantity"] += $_POST["quantity"];
}**
}
$_SESSION["cart_item"][$k]["quantity"] += $_POST["quantity"];
}
}
} else {
$_SESSION["cart_item"] = array_merge($_SESSION["cart_item"],$itemArray);
}
} else {
$_SESSION["cart_item"] = $itemArray;
}
}
break;
答案 0 :(得分:0)
火焰适合:
我相信当你这样做时
$_SESSION["cart_item"][$v]["quantity"] = $v++;
PHP实际上创建了一个你正在迭代的数组的副本
由于您要写入此数组,因此应使用&
foreach($_SESSION["cart_item"] as $k =>&$v)...
答案 1 :(得分:0)
试试这个 我在会话中存储数据 $ pr_id =产品ID
adding item to cart
if(isset($_SESSION['cart_items']))
{
//find index of an array if it exits then do not add else add to cart and then
if (!array_key_exists($pr_id,$_SESSION['cart_items']))
{
$_SESSION['cart_items'][$pr_id]['id'] = $pr_id;
$_SESSION['cart_items'][$pr_id]['quantity'] = $quantity;
}
}
else
{
$_SESSION['cart_items'][$pr_id]['id'] = $pr_id;
$_SESSION['cart_items'][$pr_id]['quantity'] = $quantity;
}
$arr = array();
$arr['count'] = count($_SESSION['cart_items']);
$arr['message'] = 'Item successFully added';
echo json_encode($arr);
这是可以在db
中进行更新输入的工作代码更新产品的条目或数量
if (array_key_exists($pr_id,$_SESSION['cart_items']))
{
$_SESSION['cart_items'][$pr_id]['quantity']=$quantity;
}
$arr['count'] = count($_SESSION['cart_items']);
$arr['message'] = 'Quantity changed successfully. ';
$arr['status'] = true;
echo json_encode($arr);
答案 2 :(得分:0)
我犯了和你一样的错误。 这是我解决的方法:
请勿使用product_id
。 product_id
是一个数字。
请使用数字和字母(例如product_name)的组合形式。
它对我有用。
$productByCode = $db_handle->runQuery("SELECT * FROM products WHERE product_id='" . $_GET["product_name"] . "'");