本文實(shí)例講述了Yii2實(shí)現(xiàn)上下聯(lián)動(dòng)下拉框功能的方法。分享給大家供大家參考,具體如下:
首先我先解釋下什么是上下聯(lián)動(dòng)的下拉框
假如一個(gè)view里面有兩個(gè)select,第一個(gè)是公司名,第二個(gè)是分公司名。公司有多個(gè),每個(gè)公司又有多個(gè)分公司,我們實(shí)現(xiàn)的就是點(diǎn)擊當(dāng)前公司后,分公司里面顯示的事當(dāng)前公司的分公司。
或者你直接理解成選擇所屬省份后,下面的select顯示的是當(dāng)前省份的縣。
原理:
點(diǎn)擊第一個(gè)select后,執(zhí)行ajax獲取當(dāng)前公司的分公司,并使用jQuery修改分公司內(nèi)容
兩個(gè)select的部分視圖代碼如下:
<?= $form->field($model, 'companies_company_id')->dropDownList(
\yii\helpers\ArrayHelper::map(\backend\models\Companies::find()->all(),'company_id','company_name'),
[
'prompt'=>'select Company',
'onchange'=>'
$.post("index.php?r=branches/lists&id='.'"+$(this).val(),function(data){
$("select#departments-branches_branch_id").html(data);
});',
]
) ?>
<?= $form->field($model, 'branches_branch_id')->dropDownList(
\yii\helpers\ArrayHelper::map(\backend\models\Branches::find()->all(),'branch_id','branch_name'),
[
'prompt'=>'Select Branches',
]
) ?>
list方法代碼:
public function actionLists($id)
{
$countBranches = Branches::find()
->where(['companies_company_id' => $id])
->count();
$branches = Branches::find()
->where(['companies_company_id' => $id])
->all();
if ($countBranches > 0) {
foreach ($branches as $branche) {
echo "<option value='" . $branche->branch_id . "'>" . $branche->branch_name . "</option>";
}
} else {
echo "<option>-</option>";
}
}
希望本文所述對(duì)大家基于Yii框架的PHP程序設(shè)計(jì)有所幫助。