感謝您花時間閱讀此。我一直在使用代碼點火器的購物車類作爲基本的購物車,但我有一個小問題。在將商品添加到購物車後,我將用戶重定向到結帳頁面,但是當我點擊瀏覽器時,商品被刪除。我知道這一點,因爲我在頭文件中有<?php echo anchor('cart','<strong>'.$this->cart->total_items(). '</strong> item(s)') ?>
,並且在返回時遞減。這真的很煩人,我想解決它。添加到購物車在Codeigniter購物車類
這是處理表單
public function process() {
if($this->input->post('submit')) {
$product = $this->products_model->getProductRow($this->input->post('productid'));
$data = array(
'id' => $product['id'],
'qty' => 1,
'price' => $this->product_helper->calcPrice($product['id']),
'name' => $product['name']
);
$this->cart->insert($data);
redirect('cart');
//have tried using redirect('cart', 303); but doest do anything
//have also tried flusing the buffer
}
else
redirect('seatcovers');}
有一些小事我是缺少在這裏,或者是這個東西,需要在車類別C1內改變控制器?
非常感謝