朋友们,我正在开发一个电子商务网站(使用 Codeigniter)。
客户填写商品数量并点击“购买”后,只有“数量”字段的商品才会被填入购物车。你能帮助我吗?
HTML:
<form>
<ul class="products-list">
<li class="product">
<input type="hidden" class="product_id" value="1">
<span class="product-name">Product 1</span>
<span class="product-value">$ 100</span>
<span>Qnt. <input type="text" class="quantity"></span>
</li>
<li class="product">
<input type="hidden" class="product_id" value="2">
<span class="product-name">Product 2</span>
<span class="product-value">$ 100</span>
<span>Qnt. <input type="text" class="quantity"></span>
</li>
</ul>
<button>Buy</button>
</form>
jQuery:
$.ajax({
url: '/cart/add/'+product_id+'/'+quantity,
type: 'GET',
success: function( data ){
if ( data != false ) {
window.location.reload();
}
}
});
我的 PHP 代码:
public function addItem( $product_id, $quantity){
$product = $this->Produto_model->getById($product_id);
$this->carrinho->setItem($product, $quantity);
echo json_encode($this->carrinho);
}