1
我加載在主視圖的觀點從控制器笨這樣笨意見
控制器
public function product_modules($domain_id)
{
$this->load->model('/admin/Model_products', '', TRUE);
$data['product_boxes'] = $this->Model_products->getProducBoxes($domain_id);
$this->load->view('admin/dashboard',$data, null, true);
}
主視圖
$this->view($_SERVER['REQUEST_URI']);
但如果請求的uri包含查詢字符串,視圖沒有被加載,我得到一個類型Unable to load the requested file: /admin/product_modules/1.php
。什麼是動態調用視圖的最佳解決方法?
非常感謝,讓我試一試 – fefe 2013-02-25 08:35:41
@fefe它的工作形式,我可以測試... – 2013-02-25 08:39:20
@fefe,刪除了不需要的幾行。 – 2013-02-25 08:50:37