程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> YII框架中搜索分頁jQuery寫法詳解,yiijquery

YII框架中搜索分頁jQuery寫法詳解,yiijquery

編輯:關於PHP編程

YII框架中搜索分頁jQuery寫法詳解,yiijquery


控制層

use frontend\models\StudUser;
use yii\data\Pagination;
use yii\db\Query;
/**
 * 查詢
 *
 */
public function actionSearch()
{
  //接值
  $where=Yii::$app->request->get();
  //實例化query
  $query=new Query();
  $query->from('stud_user');
  //判斷
  if(isset($where['sex'])&&$where['sex']!=''){
    //判斷
    if($where['sex']=='男'){
      $query->andWhere(['stud_sex'=>0]);
    }
    if($where['sex']=='女'){
      $query->andWhere(['stud_sex'=>1]);
    }
  }else{
 $where['sex']='';
}
  //年齡
  if(isset($where['age'])&&$where['age']!=''){
     $query->andWhere(['>','stud_age',$where['age']]);
  }else{
$where['age']='';
}
  //分頁
  $pagination = new Pagination(['totalCount' => $query->count()]);
  //條數
  $pagination->setPageSize('3');
  //條件
  $query->offset($pagination->offset)->limit($pagination->limit);
  //執行
  $userInfo=$query->all();
  //print_r($userInfo);die;
  return $this->render('search',['userInfo'=>$userInfo,'page'=>$pagination,'where'=>$where]);
}

模型層

<?php
namespace frontend\models;
use Yii;
use yii\db\ActiveRecord;
class StudUser extends ActiveRecord
{
  /**
   * 聲明表名
   *
   */
   public static function tableName()
   {
     return '{{%stud_user}}';
   }
  /**
   * 驗證規則
   *
   */
  public function rules()
  {
    return [
      ['stud_age','integer'],
    ];
  }
}

視圖層

<?php
use yii\widgets\ActiveForm;
use yii\helpers\Url;
use yii\helpers\Html;
use yii\widgets\LinkPager;
?>
<?php
$form=ActiveForm::begin([
  'action'=>Url::toRoute(['admin/search']),
  'method'=>'get',
]);
echo '性別'," ",Html::input('text','sex',$where['sex']);
echo '年齡'," ",Html::input('text','age',$where['age']);
echo Html::submitButton('提交');
ActiveForm::end();
?>
<table class="table">
<tr>
  <td>序號</td>
  <td>姓名</td>
  <td>年齡</td>
</tr>
  <?php foreach($userInfo as $val):?>
    <tr>
      <td><?= $val['stud_id']?></td>
      <td><?= $val['stud_name']?></td>
      <td><?= $val['stud_age']?></td>
    </tr>
  <?php endforeach;?>
</table>
<?php
echo LinkPager::widget([
  'pagination' => $page,
  'nextPageLabel'=>'下一頁'
 ]);?>

分頁的樣式在

LinkPager.php中

以上所述是小編給大家介紹的YII框架中搜索分頁jQuery寫法詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對幫客之家網站的支持!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved