我的网址是http://example.com/app/index.php/app/view/11/,所以我的想法是我已经在产品页面上从url(11)中的segment(3)获取数据,现在每个产品可能在表格中有一些记录,i需要对这些记录进行分页。
我尝试的代码是:
$config['base_url'] = 'http://localhost/feedapp/index.php/app/view/' . $this->uri->segment(3) . '/';
但它不起作用。
答案 0 :(得分:0)
如果codeigniter文件夹是' feedapp'而你的控制器是“应用程序”。并且该方法是查看'
function view($id) {
$this->load->library( 'pagination' );
$config = array();
$config['base_url'] = site_url( "app/view/$id" );
// etc etc etc
}