4

ページにページネーション情報を表示したい。このように 下の表は、17冊のうち0〜8冊を示しています

以下のコメントと回答で説明されているように、私は自分の問題を解決しようとしました。しかし、まだ問題があります。

  1. 値を取得できませんcur_page。私は試し $CI =& get_instance(); $curpage=$CI->pagination->cur_page; ましたが、これは私に
    ゼロの値を与えています。

  2. の手動値を指定した場合cur_page。$cur_page=3 とします。私の合計レコードは 17 です。その後、最後のページ (つまり 3) で間違った情報が表示されています。 showing 24-17 of 17 books

この問題を解決するのを手伝ってください。

マイ ビュー ページで

 <?php    echo "displaying $result_start to $result_end of $total";?>

コントローラ内

 $config = array();  
    $config['base_url'] = base_url().'viewallbooks/books/pgn/';
    $config["total_rows"] = $this->Booksmodel->record_count_for_secondtopBooks('3');
    $config['uri_segment'] = 4;
    $config['per_page'] = 8;
    $config['full_tag_open'] = '<div id="pagination">';
    $config['full_tag_close'] = '</div>'; 

       $this->pagination->initialize($config);
       $page = ($this->uri->segment(4)) ? $this->uri->segment(4) : 0;

    $data["query"] = $this->Subjectmodel->get_subjects();
    $data["query1"]=  $this->Editionmodel->get_edition();

    /*
     * For showing the "showing 8-16 of 23 data
     */
    $data["flimit"]=$config["per_page"];
    $data["slimit"]=$page;
    $data["trows"]= $config["total_rows"] ; 
     /*
     * Ends here--For showing the "showing 8-16 of 23 data
     */

    $data["query2"]=$this->Booksmodel->get_all_book_list_atHomeTop('3',$config["per_page"], $page);
     $data["links"] = $this->pagination->create_links();
    $this->load->view('commonfiles/booksview',$data);   

行の総数をカウントするためのモデル

  //-- -Counting the rows of bookdetails of table where display_id is as  argument----- 
 public function record_count_for_secondtopBooks($id) {
    $this->load->database(); 
     $this->db->where('display_id', $id);
     $this->db->from('bookdetails');
    return $this->db->count_all_results();
}
4

2 に答える 2

3

ページネーション情報を生成するためにこのコードを使用しました

if($config["total_rows"]>10){
    if($this->pagination->cur_page==1)
        $start = $this->pagination->cur_page;
    else
        $start = (($this->pagination->cur_page-1) * $this->pagination->per_page)+1;

    if($this->pagination->cur_page * $this->pagination->per_page > $config["total_rows"])
        $end = $config["total_rows"];
    else
        $end = $this->pagination->cur_page * $this->pagination->per_page;

    $data['pagination_des'] = "Showing ".($start)." to ".($end)." from ". $config["total_rows"]." results";
}else
{
    $data['pagination_des'] = "Showing ".($this->pagination->cur_page+1)." to ".($config["total_rows"])." from ". $config["total_rows"]." results";
}
于 2016-11-08T08:28:32.603 に答える
1

var_dump($this->pagination);次のようなものを返します。

object(CI_Pagination)
21 (31) { 
    ["base_url"]=> string(31) "http://localhost/site/users" 
    ["prefix"]=> string(0) "" 
    ["suffix"]=> string(0) "" 
    ["total_rows"]=> int(3) 
    ["per_page"]=> int(20) 
    ["num_links"]=> int(15) 
    ["cur_page"]=> int(0) 
    ["first_link"]=> string(5) "First" 
    ["next_link"]=> bool(false) 
    ["prev_link"]=> bool(false) 
    ["last_link"]=> string(4) "Last" 
    ["uri_segment"]=> int(2) 
    ["full_tag_open"]=> string(25) "" 
    ["full_tag_close"]=> string(4) "" 
    ["first_tag_open"]=> string(31) "" 
    ["first_tag_close"]=> string(13) " " 
    ["last_tag_open"]=> string(36) " " 
    ["last_tag_close"]=> string(7) "" 
    ["first_url"]=> string(31) "http://localhost/site/users" 
    ["cur_tag_open"]=> string(87) " " 
    ["cur_tag_close"]=> string(11) "" 
    ["next_tag_open"]=> string(36) " " 
    ["next_tag_close"]=> string(13) " " 
    ["prev_tag_open"]=> string(36) " " 
    ["prev_tag_close"]=> string(7) "" 
    ["num_tag_open"]=> string(35) " " 
    ["num_tag_close"]=> string(7) "" 
    ["page_query_string"]=> bool(false) 
    ["query_string_segment"]=> string(8) "per_page" 
    ["display_pages"]=> bool(true) 
    ["anchor_class"]=> string(26) "class="button bradiusMax" " }

私は〜するべきです:

echo "Showing ".( $this->pagination->cur_page * $this->pagination->per_page)." of ". $this->pagination->total_rows." total results";

必要に応じて、イタチがコメントで示したように、さまざまな形式を使用することもできます。

于 2013-01-31T19:16:42.157 に答える