【发布时间】:2013-02-10 08:23:11
【问题描述】:
我正在使用这样的 codeigniter 从控制器的主视图中加载视图
控制器
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。动态调用视图的最佳解决方法是什么?
【问题讨论】:
标签: php codeigniter-url