dongzai3917 2018-03-21 11:38
浏览 62
已采纳

如何在Codeigniter中对categoryid进行分页?

I have the following routing system in my

http://localhost/myproject/controller. 

When I filtring records using categoryid that have in second segment like:

http://localhost/myproject/controller/id.

I have a routing like this:

$route['routingcontroller/(:any)'] = 'controller/index/$1';

How my controller looks like

public function index()
{
    // Which records we want
    $id = $this->uri->segment(2);

    // Pagination starts
    $config['base_url'] = base_url().'routingcontroller/'.$id;
    $config['total_rows'] = $this->Product_model->count_total_records($id);
    $config['per_page'] = 12;

    // Customization
    $config['uri_segment'] = 2;
    $config['num_links'] = 2;
    //$config['use_page_numbers'] = TRUE;
    $config['enable_query_strings'] = TRUE;
    $config['page_query_string'] = TRUE;
    $config['query_string_segment'] = 'per_page';

    if ($this->uri->segment(2)) {
        $offset = $this->uri->segment(2);
    } else {
        $offset = 0;
    }

    $this->pagination->initialize($config);

    $data['configure'] = $this->Home_Model->configures();
    $data['main_menu'] = $this->Home_Model->main_menu();
    $data['social_media'] = $this->Home_Model->social_media();
    $data['testimonials'] = $this->Home_Model->testimonials();
    $data['category'] = $this->Product_model->category();
    $data['products'] = $this->Product_model->products($id, $config['per_page'], $offset);
    $data['main_content'] = 'viewfile';
    $this->load->view('includes/template', $data);
}

When I click pagination links that is display like

http://localhost/myproject/id/pageno

Then I get an error message like this:

404 Page Not Found
  • 写回答

1条回答 默认 最新

  • douji9816 2018-03-21 12:09
    关注

    in route

    $route['routingcontroller/(:any)'] = 'controller/index/$1'; 
    $route['routingcontroller/(:any)/(:num)'] = 'controller/index/$1/$2';
    

    in controller

    public function index($id){
      // $id will be available
      // for page_no $this->uri->segment(3)
      // all code as it is
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵