发布此问题后,我提出了另一个解决方案,而不是每次使用 for 循环添加一个我可以说的:
$session->cart[$params->id] => $qty;
我发现这是一种更好的方法,因为您可以通过这种方式更新购物车,而不是将所需的数字添加到购物车中已有的内容中。
对于所有阅读这篇文章的人,我想出了一个使用处理程序更新购物车的解决方案。如下。. . 首先是 details.php 的表单部分
<form method="post"> //should be added to retrieve the qty data from the text field.
处理程序中的下一个。. .添加以下循环和变量
$qty = $_POST['qty']; or $qty = $_REQUEST['qty'];
然后
for($i =0; $i < $qty ; $i++){
++$session->cart[$params->id];
}
我正在使用 php 创建一个购物车网站来处理一些任务。我很难更改购物车中某件商品的数量。这是我用来获取输入处理提交并在购物车视图中显示数量的代码
详细信息.php:
<form id="cart_form" action="handler-add-cart.php">
<input type="hidden" name="id" value="<?php echo $product->id ?>" />
<input type="submit" value="add to cart"/>
**Quantity:<input type="text" name="qty" />**
</form>
handler_add_cart.php:
<?php
require_once "include/Session.php";
$session = new Session();
**$params = (object) $_REQUEST;
++$session->cart[$params->id];**
header("location: cart.php");
购物车.php:
<?php
require_once "include/Session.php";
$session = new Session();
require_once "include/db.php";
// The $cart array simplifies the view generation below, keeping
// computations and database accesses in this controller section.
$cart = array();
if (isset($session->cart)) {
$total = 0;
foreach ($session->cart as $prod_id => $qty) {
$product = R::load("products", $prod_id);
$total += $qty * $product->price;
$entry = new stdClass(); // entry will contain info for table
$entry->id = $prod_id;
$entry->price = $product->price;
$entry->name = $product->name;
**$entry->qty = $qty ;**
$cart[] = $entry;
}
}
?>
// 在这里,我删除了一些 html 以专注于我的问题我在文件中有所有标签,所以这不是问题
<h2>Cart</h2>
<?php if (count($cart)): ?>
<table id="display">
<tr>
<th>product</th><th>id</th><th>quantity</th><th class='price'>price</th>
</tr>
<?php foreach ($cart as $entry): ?>
<tr>
<td><a href="details.php?id=<?php echo $entry->id ?>"
><?php echo $entry->name ?></a></td>
<td><?php echo $entry->id ?></td>
**<td class='qty'><?php echo $entry->qty ?></td>**
i cleared these fields below to not distract from the issue im having
<td >
</td>
</tr>
<?php endforeach ?>
<tr>
<th >
</th>
</tr>
</table>
</body>
</html>