ここにある無限のページネーション jquery プラグイン ( https://github.com/jney/jquery.pageless ) を私の codeigniter プロジェクトに実装しようとしています。
入力したjqueryコードは、デモページの内容と同じです
$('#results').pageless({ totalPages: 10
, url: '/theurl/index'
, loaderMsg: 'Loading more results'
});
私のコードイグナイターコントローラーにあるコードは次のとおりです
$config['base_url'] = base_url() . 'theurl/index';
$config['total_rows'] = $this->model->record_count();
$config['per_page'] = 20;
$config['uri_segment'] = 3;
// Init the config
$this->pagination->initialize( $config );
// Create pagination
$page = ($this->uri->segment(3)) ? $this->uri->segment(3) : 0;
$data['results'] = $this->onyafeet->fetch_results($config['per_page'], $page);
$data['links'] = $this->pagination->create_links();
// Load the view and pass through all the data
$this->load->view('theurl/index', $data);
コードを実行してページの一番下に到達すると、機能しますが、結果用に作成された新しい div に入力ページも読み込まれます。
どんな助けでも大歓迎です。
乾杯