控制器 -
public function add_to_cart($id,$quantity){
$this->load->model("getdb");
$this->load->model('shops_model');
$ins=TRUE;
$product1= $this->getdb->Product($id);
$price1 = $quantity/$product1[0]->min_quantity;
foreach ($this->cart->contents() as $items) {
if($items['id']==$id){
$ins=FALSE;
$data = array(
'rowid' => $items['rowid'],
'id' => $id,
'price' => $product1[0]->selling_price*$price1,
'name' => $product1[0]->product_name,
'options' => array('image' =>$product1[0]->image1, 'unit' => $product1[0]->unit, 'quantity' => $quantity)
);
$this->cart->update($data);
}
}if($ins){
$data = array(
'id' => $id,
'qty' => 1,enter code here
'price' => $product1[0]->selling_price*$price1,
'name' => $product1[0]->product_name,
'options' => array('image' =>$product1[0]->image1, 'unit' => $product1[0]->unit, 'quantity' => $quantity)
);
$this->cart->insert($data);
}
$data['shops_id_data']= $this->shops_model->getshopiddata($id);
$a = end(end($data['shops_id_data']));
$data['shops_data']= $this->shops_model->getshopdata($a);
redirect('Shops/shop_page');
}
这里我想重新定位shop_page方法,而且我想使用重定向方法在shop_page上传递$ data [' shop_data]数组,而不使用$ this->> load-> view(&#39 ; shop_page',$ data)....所以它是如何可能的..
答案 0 :(得分:0)
我在我的codeigniter安装中使用HMVC。为此,我会使用像
这样的东西$this->load->module("Shops/shop");
$this->Shops->shop_page($data);
这篇文章帮助了我https://stackoverflow.com/a/14960794/501827
如果您不使用HMVC,不确定这是否有效,但是一些谷歌搜索可能会填补空白。