我创建了一个将使用ui tab jquery
调用的方法function debate_view_commenttab_content(){
$this->autoRender = false;
$this->layout=null;
if($this->RequestHandler->isAjax())
{
if (!empty($this->passedArgs['debateId'])) {
$debateId=$this->passedArgs['debateId'];
$this->set('debateId',$debateId);
$this->DebatePost->recursive = 0;
if (!empty($this->passedArgs['greensideupdateId'])) {
$this->set('greensideupdateId', $this->passedArgs['greensideupdateId']);
}else{
$this->set('greensideupdateId', 'greensideupdateId');
}
if (!empty($this->passedArgs['redsideupdateId'])) {
$this->set('redsideupdateId', $this->passedArgs['redsideupdateId']);
}else{
$this->set('redsideupdateId', 'redsideupdateId');
}
$arrfavdebatecomment=$this->get_infavour_records($debateId);
$this->set('arrfavdebatecomment',$arrfavdebatecomment);
$arragndebatecomment=$this->get_against_records($debateId);
$this->set('arragndebatecomment',$arragndebatecomment);
if(!empty($this->passedArgs['paginatedrecord']) && $this->passedArgs['paginatedrecord']==1 && $this->passedArgs['greensideupdateId']=='greensideupdateId' ){
$this->render('/elements/debate_posts/append_page_record');
}else if(!empty($this->passedArgs['paginatedrecord']) && $this->passedArgs['paginatedrecord']==1 && $this->passedArgs['redsideupdateId']=='redsideupdateId' ){
$this->render('/elements/debate_posts/append_page_record_against');
}else{
$this->render('/elements/debate_posts/commnts_tab_content');
}
}
}
}
现在从上面的方法我调用了两个函数,如下所示:
function get_infavour_records($debateId=Null){
$this->DebateComment->recursive = 0;
$favconditions = array('DebateComment.debate_id'=>$debateId,'DebateComment.debate_type'=>'in favour','DebateComment.status'=>'Active');
$this->paginate['DebateComment'] = array(
'limit' => 1,//Configure::read('CommentSetting.show_no_default_comments'),
'recursive'=>-1
);
$arrfavdebatecomment=$this->paginate('DebateComment',$favconditions);
$this->helpers['Paginator'] = array('ajax' => 'Ajax');
return $arrfavdebatecomment;
}
function get_against_records($debateId=Null){
$this->DebateComment->recursive = 0;
$agnconditions = array('DebateComment.debate_id'=>$debateId,'DebateComment.debate_type'=>'against','DebateComment.status'=>'Active');
$this->paginate['DebateComment'] = array(
'limit' => Configure::read('CommentSetting.show_no_default_comments'),
'recursive'=>-1
);
$arragndebatecomment=$this->paginate('DebateComment',$agnconditions);
$this->helpers['Paginator'] = array('ajax' => 'Ajax');
return $arragndebatecomment;
}
现在在append_page_record.ctp的视图一侧写了:
<?php $this->Paginator->options(array(
'update' => '#'.$greensideupdateId,
'evalScripts' => true,
'before' => $this->Js->get('#spinner')->effect('fadeIn', array('buffer' => false)),
'complete' => $this->Js->get('#spinner')->effect('fadeOut', array('buffer' => false)),
'url' => array('controller' => 'debate_posts','action'=>'debate_view_commenttab_content','debateId'=>$debateId,'greensideupdateId' => $greensideupdateId,'paginatedrecord' => 1),
));
echo '<div class="members_prew_next_area cf"><div class="pagination_area">'.$this->Paginator->first('first').$this->Paginator->prev('<<', array('escape' => false), null, array('class'=>'disabled','escape' => false)).$this->Paginator->numbers(array('before'=>'','after'=>'','model'=>'','modulus'=>'','separator'=>'')).$this->Paginator->next( '>>', array('escape' => false), null, array('class' => 'disabled','escape' => false)).$this->Paginator->last('last');
echo $js->writeBuffer();
echo ' </div></div>';
if($arrfavdebatecomment){
echo '<div class="clear"><ul class="cf">';
$i = 0;
foreach ($arrfavdebatecomment as $favrecord):
echo '<li>'.'<h2>'.($favrecord['DebateComment']['debate_comment_title']).'</h2></li>';
endforeach;
echo '</ul>';
echo '</div>';
}else{
__l("No record");
}
?>
和append_page_record_against.ctp
<?php $this->Paginator->options(array(
'update' => '#'.$redsideupdateId,
'evalScripts' => true,
'before' => $this->Js->get('#spinner')->effect('fadeIn', array('buffer' => false)),
'complete' => $this->Js->get('#spinner')->effect('fadeOut', array('buffer' => false)),
'url' => array('controller' => 'debate_posts','action'=>'debate_view_commenttab_content','debateId'=>$debateId,'redsideupdateId' => $redsideupdateId,'paginatedrecord' => 1),
));
echo '<div class="members_prew_next_area cf"><div class="pagination_area">'.$this->Paginator->first('first').$this->Paginator->prev('<<', array('escape' => false), null, array('class'=>'disabled','escape' => false)).$this->Paginator->numbers(array('before'=>'','after'=>'','model'=>'','modulus'=>'','separator'=>'')).$this->Paginator->next( '>>', array('escape' => false), null, array('class' => 'disabled','escape' => false)).$this->Paginator->last('last');
echo $js->writeBuffer();
echo ' </div></div>';
if($arragndebatecomment){
echo '<div class="clear"><ul class="cf">';
$i = 0;
foreach ($arragndebatecomment as $record):
echo '<li>'.'<h2>'.($record['DebateComment']['debate_comment_title']).'</h2></li>';
endforeach;
echo '</ul>';
echo '</div>';
}else{
__l("No record");
}
?>
现在,当我运行我的tab方法时,它显示两次相同的分页栏两次结果而不是不同的cant我使用paginate和paginator显示同一页面上的分页?如果你的guice可以帮助我,请你需要它。
答案 0 :(得分:0)
如果我没弄错,当您对模型进行分页时,会将默认值/选项/设置保存在:
$this->params['paging'][<ModelName>]
因此,如果您对同一模型进行两次分页,则会覆盖以前模型的默认值/选项/设置。
我目前正在处理类似的问题,到目前为止我唯一想到的解决方法是最初动态更新(通过Ajax)每个div,以便每个请求都有$ this-&gt;中的索引。 params ['paging']存储默认值/选项/设置。