0
我想驗證多個下拉列表,像這樣:驗證多個DropDownList的yii2
視圖/形式:
<?=
$form->field($hours, 'hours_id', ['template' => '{label}{input}<span class="help-block">{hint}{error}</span>'])->dropDownList(Hours::getHierarchy(), ['size' => 10, 'multiple' => 'multiple'], ['prompt' => Yii::t('app', '-- Select --'),
])
?>
模型規則:
['hours_id', 'each', 'rule' => ['integer']],
結果:
小時無效。
有人知道什麼是錯?我試圖自定義驗證,並得到相同的錯誤。