1

好的,我有这个问题。我正在尝试将产品添加到购物车作为选项颜色等,但我似乎无法正确处理。如果我只是点击“添加到购物车”,它每次都会计数,但如果我改变颜色,它就会开始出错。帮助,男孩和女孩!已经为此工作了一段时间。

if(isset($_POST['submit'])){
                       $id = $_POST['id'];
                       $sleeve = $_POST['sleeve'];
                       $colour = $_POST['colour'];
                       $size = $_POST['size'];
                       $action = $_POST['action'];
                       $quantity = 1;
                       }
                       if(!isset($_SESSION['cart'][$id])){ 
                             $_SESSION['cart'][$id] = array($id, $colour, $size, $quantity);      
                       }
                          else{
                                if(isset($_SESSION['cart'][$id])){ // if the session as already been set then..
                                       while(list($key, $value) = each($_SESSION['cart'])){ // while loop to chech to content of the session..
                                              if($value[0] == $id && $value[1] == $colour && $value[2] == $size){ // checking to see if the session content is the same..
                                                    $quantity = $value[3] +=1;
                                                    $_SESSION['cart'][$id] = array($id, $colour, $size, $quantity); // if it is the same then add this..
                                                 }// if is ==
                                                    else{
                                                         $quantity +=1;
                                                         $_SESSION['cart'][$id][] = array($id, $colour, $size, $quantity); // is session is not the same do this..
                                                        }//else if it is not ==

                                             }// while
                                       }// if isset
                               }// else isset session 
4

1 回答 1

0

似乎您正在检查购物车中的每个项目与一个项目,如果当前项目将在第一次迭代时匹配,那么它不应该退出循环并设置该项目存在的标志,因此在循环之后,增加项目数量,否则在循环后添加另一个实例。

但是,当您添加另一个产品实例并将通过您的 if 部分进行检查时,您添加具有不同颜色的产品的其他实例的方式仍然无法工作。

在这里,您要针对 $id 键插入项目:

   if(!isset($_SESSION['cart'][$id])){ 
                         $_SESSION['cart'][$id] = array($id, $colour, $size, $quantity);      
                   }

在其他部分中,当项目 ID 相同但属性不同时,您将产品添加到购物车的另一个​​子数组中:

$_SESSION['cart'][$id][] = array($id, $colour, $size, $quantity); // is session is not the same do this..

因此,您应该将每个产品/项目添加为:

$_SESSION['cart'][$id][] = array($id, $colour, $size, $quantity); 

在这两种情况下,要么是产品的第一个变体,要么是其他变体。

但是,如果您的价格因变体而异,则为每个项目的每个变体使用不同的产品实例 ID。

如果我在任何时候不清楚,请询问,如果我还没有理解您的问题,请告诉我。

于 2013-01-03T15:24:55.563 回答