我正在为分页而苦苦挣扎。我想使用默认功能。问题是分页按钮(数字,上一个,下一个)的链接不起作用。我不知道如何将 URL 中的“page:2”传递回分页器,让他知道他必须显示/呈现带有接下来 5 个结果的表格。例如:我单击 page:2 的“2”,网站将被刷新,但根本没有显示结果表。
其他信息:输入字段的 URL 位于 cakephp/Posts/index。当我单击分页器按钮(例如 prev)时,分页器转到 cakephp/Posts/index/page:2。
在这里你得到 PostsController 代码:
class PostsController extends AppController {
var $name = 'Posts';
public $helpers = array('Html', 'Form', 'Js', 'Paginator');
public $components = array('RequestHandler');
public $paginate = array(
'limit' => 5,
'maxLimit' => 50,
'order' => array(
'Post.INCOME' => 'asc',
),
);
function index() {
//debug($this->request->data);
//var_dump($this->params);
if(!empty($this->request->data['ajaxSearchAll'])){
if($this->RequestHandler->isAjax()){
//$data = $this->Post->find('all', array('conditions' => array('ZIPCODE LIKE' => '%' . $this->data['ajaxSearchAll'] . '%')));
$posts = $this->paginate('Post', array('ZIPCODE LIKE' => '%' . $this->data['ajaxSearchAll'] . '%'));
//$this->set('posts', $data);
$this->set(compact('posts'));
$this->render('SearchAll', 'ajax');
}
}
/// GOES ON WITH IRRELEVANT STUFF ///
下面显示了“search_all.ctp”的视图文件代码(调试转储显示了一个正确的数组应该是怎样的):
<?php $this->paginator->settings = array(
'limit' => 5,
'maxLimit' => 25
);
$this->Paginator->options(array('url' => array('controller' => 'Posts', 'action' => 'index')));
?>
<table>
<tr>
<th><?php echo $this->Paginator->sort('CITY', 'Stadt'); ?></th>
<th><?php echo $this->Paginator->sort('DATE', 'Lieferdatum'); ?></th>
<th><?php echo $this->Paginator->sort('TIME', 'Lieferzeit'); ?></th>
</tr>
<!-- Hier iterieren wir in einer Schleife durch den $posts Array und geben die Daten des aktuellen Elements aus -->
<?php foreach ($posts as $post): ?>
<tr>
<td><?php echo $this->Html->link($post['Post']['CITY'],"/Posts/view/".$post['Post']['id']); ?></td>
<td><?php echo $post['Post']['DATE']; ?></td>
<td><?php echo $post['Post']['TIME']; ?></td>
</tr>
<?php endforeach;} ?>
</table>
<?php
if(!empty($posts)){
echo $this->Paginator->first(__('Erste Seite', true), array('class' => 'disabled'));
echo " ";
echo $this->Paginator->prev('« Vorherige Seite', null, null, array('class' => 'disabled'));
echo " ";
echo $this->Paginator->numbers();
echo " ";
echo $this->Paginator->next('Nächste Seite »', null, null, array('class' => 'disabled'));
echo " ";
echo $this->Paginator->last(__('Letzte Seite', true), array('class' => 'disabled'));
} ?>
<?php debug($this->Paginator->params());
debug($this->request->params['paging']);
?>
如果你们中的任何人能解决我的问题,我将不胜感激。
更新1:我给你数组
debug($this->request->params['paging']);
它看起来非常好。我必须对命名参数做些什么吗?我在食谱中找不到合适的东西:-(
array(
'Post' => array(
'page' => (int) 1,
'current' => (int) 5,
'count' => (int) 11,
'prevPage' => false,
'nextPage' => true,
'pageCount' => (int) 3,
'order' => array(
'Post.INCOME' => 'asc'
),
'limit' => (int) 5,
'options' => array(
'conditions' => array()
),
'paramType' => 'named'
)
)
更新 2:index.ctp 的代码,ajax 搜索开始的地方。分页器的查询和第一页运行良好。但根本不是分页器的按钮:
<div id="courierQuery">
<?php echo $this->Form->create(false, array('type' => 'post', 'default' => false)); ?>
<?php echo $this->Form->input('ajaxSearchAll', array('type' => 'text', 'id' => 'ajaxSearchAll', 'name' => 'ajaxSearchAll', 'label' => false, 'placeholder' => 'Bitte PLZ eingeben'))?>
<?php $before = $this->Js->get('#loading')->effect('fadeIn', array('buffer' => False)); ?>
<?php $success = $this->Js->get('#loading')->effect('fadeOut', array('buffer' => False)); ?>
<?php echo $this->Js->get('#ajaxSearchAll')->event('keyup', $this->Js->request(
array('controller'=>'Posts', 'action'=>'index'),
array(
'update'=>'#erfolgreich_ajax',
'before' => $before,
'success' => $success,
'async' => true,
'dataExpression' => true,
'method' => 'post',
'data'=>$this->Js->serializeForm(array('isForm'=>'false', 'inline'=>'true'))
)
)
); ?>
<?php echo $this->Form->end();?>
</div>
/// IRRELEVANT STUFF ///
<div id="loading" style="display: none;">
<div style="float:left;margin-top: 14px"><?php echo $this->Html->image('ajax-loader.gif', array('id' => 'busy-indicator')); ?></div>
<div style="float:left;margin: 22px 0 0 10px;color: #fff"><p>Suche nach Inseraten läuft ...</p></div>
</div>