《PHP教程:YII框架中搜索分頁jQuery寫法詳解》要點:
本文介紹了PHP教程:YII框架中搜索分頁jQuery寫法詳解,希望對您有用。如果有疑問,可以聯系我們。
相關主題:YII框架
PHP應用控制層
PHP應用
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應用模型層
PHP應用
<?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應用視圖層
PHP應用
<?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'=>'下一頁'
]);?>
PHP應用分頁的樣式在
PHP應用LinkPager.php中
PHP應用以上所述是小編給大家介紹的YII框架中搜索分頁jQuery寫法詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的.在此也非常感謝大家對維易PHP網站的支持!
轉載請注明本頁網址:
http://www.snjht.com/jiaocheng/2280.html