0

CodeIgniter ページネーションの属性を設定しましたが、エラーが発生します。

1 2 3 4 5 >

私のページネーションは、ページ番号 1 を除く 2 ~ 5 ページで機能しています。なぜそうなっているのかわかりません。コントローラー名が であるコントローラー関数を次に示しますc_forum

function show_posts_by_chapter($id_chapter=false) {
    if($id_chapter==false)
        show_404();


    $config = array();
    $config["base_url"] = base_url() . "index.php/c_forum/show_posts_by_chapter/" . $id_chapter.'/';
    $config['total_rows'] = $this->m_forum->num_rows_by_chapter($id_chapter);

    $config['per_page'] = 2;
    $configp['uri_segment'] = 4;

    $choice = $config["total_rows"] / $config["per_page"];
    $config["num_links"] = round($choice);
    $this->pagination->initialize($config);
    $page = ($this->uri->segment(4)) ? $this->uri->segment(4) : 0;

    $data['chapter_id'] = $id_chapter;
    $data['allowed'] = $this->_get_level();
    $data['count_rows'] = $config['total_rows'];


    $data['posts_all'] = $this->m_forum->get_posts_by_chapter($config['per_page'], $page, $id_chapter);
    $data['links'] = $this->pagination->create_links();
    $this->load->view('forum/show_posts', $data);
}

ビューはシンプルです:

 `<?php echo $links; ?>`

回答を得ました:私は使用$configp['uri_segment'] = 4;しましたが、そうあるべきです$config['uri_segment'] = 4;

4

1 に答える 1

0

$configp['uri_segment'] = 4;
これは
$config['uri_segment'] = 4;である必要があります。

于 2013-12-01T14:29:11.897 に答える