簡體   English   中英

使用會話增加購物車項目數量

[英]Increment Shopping cart item quantity using session

我知道我的問題可能與Stackoverflow中的另一個問題非常相似。 我發現了一些類似的問題,但實際上我無法為我的問題找到正確的解決方案。

我正在使用Sessions和ajax-json編寫購物車。 我的產品結構有點復雜。 它具有名稱,大小,類型,顏色以及每種類型和大小的特定價格。 要點是,如果我添加相同的產品,則名稱,尺寸,類型,顏色和價格相同時,我將無法增加商品數量。 這是我的代碼。 我想我寫的沒錯,但是我不明白問題出在什么地方。 實際上,它增加了項目數量,但是只有一次,當我檢查數組時,它的項目數量尚未增加。

$data = json_decode($_POST['jsonData'], true);
    $pr_type = $data['pr_type'];
    $pr_size = $data['pr_size'];
    $pr_link = $data['pr_link'];
    $pr_color = $data['pr_color'];
    $pr_price = $data['pr_price'];

    $products_s = $this->getSession()->get('prof_cart');
    $product = array();

    if (empty($products_s)) {
        $products_s = array();
    } else {
        $products_s = $products_s;
    }

    $products = Model::factory('Client_Product')->getProductById($pr_link);
    $type = Model::factory("Client_Product")->getProductTypeByLink($pr_type);
    $size = Model::factory("Client_Product")->getProductSizeById($pr_size);
    if ($pr_type != 'undefined') {
        $product['type'] = $type[0]['title'];
    } else {
        $product['type'] = "";
    }
    $isCreate = true;

    foreach ($products_s as $id) {
        if ($id['price'] == $pr_price &&
                $id['title'] == $products[0]['title'] &&
                $id['size'] == $size[0]['size'] &&
                $id['type'] == $type[0]['title']) {
            $id['quant']++;
            $isCreate = false;
        }
    }

    if ($isCreate) {
        $product['quant'] = 1;
        $product['size'] = $size[0]['size'];
        $product['title'] = $products[0]['title'];
        $product['price'] = $pr_price;            
        $product['color'] = $pr_color;
        array_push($products_s, $product);
    }

    $sum = 0;
    foreach ($products_s as $id) {
        $sum += $id['price'] * $id['quant'];
    }

    //echo $sum;

    echo "<pre>";
   var_dump($products_s);
   echo "</pre>";

    $this->getSession()->set('prof_cart', $products_s);

    $this->getSession()->set('prof_sum', $sum);

您需要增加主要產品陣列中的數量,如下所示。

foreach ($products_s as $key => $id) {
    if ($id['price'] == $pr_price &&
            $id['title'] == $products[0]['title'] &&
            $id['size'] == $size[0]['size'] &&
            $id['type'] == $type[0]['title']) {
        $products_s[$key]['quant']++;
        $isCreate = false;
    }
}

嘗試這個 :

    foreach ($products_s as $id) {
    if ($id['price'] == $pr_price &&
            $id['title'] == $products[0]['title'] &&
            $id['size'] == $size[0]['size'] &&
            $id['type'] == $type[0]['title']) {
        $id['quant'] = $id['quant']++;
        $isCreate = false;
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM