如何为 Yii2 ActiveForm dropDownList 设置最大选择?

How can I set max selection for Yii2 ActiveForm dropDownList?

我正在用这个创建一个表单:

<?= $form->field($model, 'job_category')
     ->dropDownList($jobCategoryDropDown, ['options' => $jobCategoryOptionArray, 'multiple' => 'multiple'])
     ->label('Ngành nghề - chuyên môn (Bắt buộc) <span class="help-required"> * </span>') ?>

如何限制用户最多 select 3 个或更多值?

你可以这样做。 在模型中声明一个验证器函数。

public function limitSelection($attribute,$params)
{
if(count($this->$attribute)>3)
    {
        $this->addError($attribute,"You are only allowed to select 3 or less items for ".$attribute);      
     }
 }

然后通过以下方式声明规则。

public function rules()

{       

    return [    

..................other rules...................... 

       ['job_category', 'required','message'=>"Select at least one item for {attribute}"],           

       ['job_category', 'limitSelection']
        ];
}