第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

將相同產(chǎn)品添加到購物車后更新數(shù)量

將相同產(chǎn)品添加到購物車后更新數(shù)量

PHP
汪汪一只貓 2023-04-28 17:14:08
我不知道如何通過再次添加來更新已經(jīng)在購物籃中的產(chǎn)品數(shù)量。如果數(shù)量為 1,添加數(shù)量為 3 的相同產(chǎn)品后,應(yīng)在購物籃中顯示 4。我現(xiàn)在所能做的就是用新的數(shù)量替換添加的數(shù)量,或者在購物籃表中插入一個(gè)空元素,不包含任何產(chǎn)品詳細(xì)信息。<?php// Products are added to the basketif (!isset($_SESSION['basket'])) {  $_SESSION['basket'] = array();}if ($_SERVER['REQUEST_METHOD'] == 'POST') {  if (isset($_POST['id'])) {    $_SESSION['basket'][$_POST['id']] = array(    'product_id'=>($_POST['id']),    'product_photo'=>($_POST['hidden_photo']),    'product_photo_alt'=>($_POST['hidden_photo_alt']),    'product_name'=>($_POST['hidden_name']),    'product_price'=>($_POST['hidden_price']),    'product_quantity'=>($_POST['quantity'])    );  }}// This is the code with which I can only insert an empty element in the basket table with no product details.if ($_SERVER["REQUEST_METHOD"] == "POST") {  if (isset($_POST['id']) && isset($_POST['quantity'])) {    foreach ($_SESSION['basket'][$_POST['id']] as $item) {        if ($_item['product_id'] === $_SESSION['basket']['product_id']) {          $_SESSION['basket']['product_quantity'] += $item['product_quantity'];         }     }      }   }// If I apply below code it just replaces the quantity:if ($_SERVER["REQUEST_METHOD"] == "POST") {  if (isset($_POST['id']) && isset($_POST['quantity'])) {    foreach ($_SESSION['basket'] as $item) {        if ($_item['product_id'] === [$_POST['id']]) {          $item['product_quantity'] += $_POST['quantity'];         }     }      }   }?>
查看完整描述

1 回答

?
茅侃侃

TA貢獻(xiàn)1842條經(jīng)驗(yàn) 獲得超22個(gè)贊

if ($_SERVER["REQUEST_METHOD"] == "POST") {

  if (isset($_POST['do_it']) && $_POST['do_it'] == 'change') {

    if (isset($_SESSION['basket'])) {

      $is_available = 0;

        foreach ($_SESSION['basket'] as $keys => $values) {

          if ($_SESSION['basket'][$keys]['product_id'] == $_POST['id']) {

            $is_available++;

            $_SESSION['basket'][$keys]['product_quantity'] +=  $_POST['quantity'];

          } 

        } 

    }


    if ($is_available == 0) {

      if (!isset($_SESSION['basket'])) {

        $_SESSION['basket'] = array();

      }


      if ($_SERVER['REQUEST_METHOD'] == 'POST') {

        if (isset($_POST['id'])) {

          $_SESSION['basket'][$_POST['id']] = array(

          'product_id'=>($_POST['id']),

          'product_photo'=>($_POST['hidden_photo']),

          'product_photo_alt'=>($_POST['hidden_photo_alt']),

          'product_name'=>($_POST['hidden_name']),

          'product_price'=>($_POST['hidden_price']),

          'product_quantity'=>($_POST['quantity'])

          );

        }

      }   

    }  

  }   

}

歸功于https://www.webslesson.info/2018/04/shopping-cart-by-using-bootstrap-popover-with-ajax-php.html


雖然,我不確定我是否理解$is_available代碼中的實(shí)際作用以及添加相同產(chǎn)品時(shí)它是如何指代增加數(shù)量的。


查看完整回答
反對(duì) 回復(fù) 2023-04-28
  • 1 回答
  • 0 關(guān)注
  • 143 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)