使用Yii框架加入”上一篇” “下一篇”功能

jerry Yii 2015年08月09日 收藏

首先是扩展Mode类,生成两个相应查

  1. public function nextpost()
  2. {
  3.     return 
  4. self::model()->find(array('condition'=>'id>:id','params'=>array(':id'=>$this->id),'order'=>'t.id
  5.  ASC'));
  6. }
  7.  
  8. public function prevpost()
  9. {
  10.     return 
  11. self::model()->find(array('condition'=>'id<:id','params'=>array(':id'=>$this->id),'order'=>'t.id
  12.  DESC'));
  13. }

然后在相应view里加入代码:

  1. <div>
  2.     上一篇:
  3.     <?php
  4.     $prevpost=$model->nextpost();
  5.     echo $prevpost?CHtml::link($prevpost->Label, $prevpost->Link):'没有了';
  6.     ?>
  7. </div>
  8. <div>
  9.     下一篇:
  10.     <?php
  11.     $nextpost=$model->prevpost();
  12.     echo $nextpost?CHtml::link($nextpost->Label, $nextpost->Link):'没有了';
  13.     ?>
  14. </div>