我正在尝试使用Yii2的条件验证器,如指南中所述:

型号代号

public function rules()
{
   // $discharged = function($model) { return $this->discharged == 1; };
    return [
        [[ 'admission_date','discharge_date', 'doctor_appointment_date', 'operation_date'], 'safe'],
        [[ 'package','tpa_name', 'discharged', 'bed_type', 'room_category', 'ref_doctor', 'consultant_doctor', 'operation_name'], 'integer'],
        [['advance_amount', 'operation_charges'], 'number'],
        [['patient_name', 'ref_doctor_other'], 'string', 'max' => 50],
        [['general_regn_no', 'ipd_patient_id'], 'string', 'max' => 20],
        [['admission_date', 'discharge_date', 'doctor_appointment_date', 'operation_date'],'default','value'=>null],
        ['ipd_patient_id', 'unique'],

        [['bed_type','admission_date','room_category'],'required'],

        ['discharge_date', 'required', 'when' => function($model) {
            return $model->discharged == 1;
        }],


    ];
}

在我的 Controller 中,例如:
public function actionCreate()
    {
        $model = new PatientDetail();

        if ($model->load(Yii::$app->request->post()) && $model->save()) {
            return $this->redirect(['view', 'id' => $model->id]);
        } else {
            return $this->render('create', [
                'model' => $model,
            ]);
        }
    }

但是,无论我是否选择作为复选框字段的出院字段,出院日期alwasys都会根据需要返回。

我在这里做错了什么?

最佳答案

看来,默认情况下,Yii2将在服务器端和客户端中进行验证。检查Yii2 docConditional Validation部分中的示例:

['state', 'required', 'when' => function ($model) {
    return $model->country == 'USA';
}, 'whenClient' => "function (attribute, value) {
    return $('#country').val() == 'USA';
}"],

您还需要一个'whenClient'代码,或者如@Alexandr Bordun所说,通过'enableClientValidation' => false禁用客户端验证。

关于php - Yii2:条件验证器总是返回必填项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28756397/

10-11 21:40