1

我制作了一种方法,将使用 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");
              }


        ?>

现在,当我运行我的选项卡方法时,它为两个结果显示相同的分页栏两次,而不是不同的我不能使用分页和分页器在同一页面上显示分页吗?如果你能帮助我,请做必要的事情。

4

1 回答 1

0

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

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

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

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

于 2013-03-26T00:48:09.897 回答