即時通訊工作在我的網站的分頁功能我正在使用Codeigniter和我不斷收到一條錯誤消息,我不能修復它讓我頭疼:D有人可以看一看在我的代碼中告訴我我哪裏出錯了。我只是一個大膽的人。
誤差Undefined property: CI_Loader::$pagination
也Fatal error: Call to a member function create_links() on a non-object in C:\....
TNX烏拉圭回合的幫助
view.php
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<meta name=description content="">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>Untitled</title>
<link rel=stylesheet href="css/style2.css">
<link rel=author href="humans.txt">
</head>
<body>
<h1>Answer</h1>
<?php if (isset($records)) : foreach($records as $row) : ?>
<div = 'container'>
<!--pagination -->
<?php echo $this->pagination->create_links(); ?>
<ul>
<h1><?php echo $row->question; ?></h1>
<li><?php echo $row->answer1; ?></li>
<li><?php echo $row->answer2; ?></li>
<li><?php echo $row->answer3; ?></li>
<li><?php echo $row->answer4; ?></li>
<li><?php echo $row->answer5; ?></li>
<li><?php echo $row->answer6; ?></li>
<ul>
</div>
<?php endforeach; ?>
<?php else : ?>
<h2>no records were returned</h2>
<?php endif; ?>
</body>
</html>
控制器:
<?php
class Survay extends CI_Controller{
function index()
{
$data = array(
'question' => $this->input->post('question'),
'answer1' => $this->input->post('answer1'),
'answer2' => $this->input->post('answer2'),
'answer3' => $this->input->post('answer3'),
'answer4' => $this->input->post('answer4'),
'answer5' => $this->input->post('answer5'),
'answer6' => $this->input->post('answer6'),
);
if($query = $this->membership_model->get_records())
{
$data['records'] = $query;
}
$this->load->view('survay_view', $data);
}
function page()
{
//pagination
$this->load->library('pagination');
$config['base_url'] = 'http://localhost/admin/index.php/survay';
$config['total_rows'] = $this->db->get('save_survay')->num_rows();
$config['per_page'] = 1;
$config['num_links'] =20;
$this->pagination->initialize($config);
$data['records'] = $this->db-get('save_survay', $config['per_page'], $this->uri->segment(3));
$this->load->view('survay_view', $data);
}
}
?>
因爲'index()'和'page()'方法都使用了相同的視圖'survay_view',所以你可能需要在'if(isset($ pagination)){}'但分頁數據僅在page()方法中設置。 – Jeemusu 2013-02-14 08:09:04
tnx爲你的幫助,但你可以擴大更多的你的評論我是一個noob上的PHP :) tnx – 2013-02-14 08:26:34
@Jeemusu:這是真的 – beerwin 2013-02-14 08:32:02