繁体   English   中英

cakephp在同一页面上针对单个模型和控制器的多个ajax分页

[英]Multiple ajax pagination for single Model and Controller on the same page in cakephp

我已经制定了一种将使用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方法时,它对两个结果都显示相同的分页栏两次,而不是不同,所以我无法使用paginate和paginator在同一页面上同时显示这两个分页? 如果您认为可以帮助我,请做需要的事。

如果我没记错的话,在对模型进行分页时,它会将默认值/选项/设置保存在:

$this->params['paging'][<ModelName>]

因此,如果您对同一模型进行两次分页,它将覆盖先前模型的默认设置/选项/设置。

我目前正在处理一个类似的问题,到目前为止,我唯一想到的解决方法是首先动态地(通过Ajax)更新每个div,以便每个请求的索引都可以在$ this-> params ['paging中使用']存储默认值/选项/设置。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM