Yii表单模型验证 - 任何一个都是必需的

时间:2011-08-16 15:50:48

标签: forms validation model yii

我在表单上有两个字段(forgotpassword表单)用户名和电子邮件ID。用户应输入其中一个。我的意思是检索密码用户可以输入用户名或电子邮件ID。有人可以指出我的验证规则吗?

我可以使用任何内置规则吗?

(对不起,如果已经讨论过,或者我错过了)

感谢您的帮助

此致

基兰

8 个答案:

答案 0 :(得分:21)

我今天试图解决同样的问题。我得到的是下面的代码。

public function rules()
{
    return array(
        // array('username, email', 'required'), // Remove these fields from required!!
        array('email', 'email'),
        array('username, email', 'my_equired'), // do it below any validation of username and email field
    );
}

public function my_required($attribute_name, $params)
{
    if (empty($this->username)
            && empty($this->email)
    ) {
        $this->addError($attribute_name, Yii::t('user', 'At least 1 of the field must be filled up properly'));

        return false;
    }

    return true;
}

一般的想法是将'required'验证移动到自定义my_required()方法,该方法可以检查是否有任何字段被填满。

我看到这篇文章来自2011年但是我找不到任何其他解决方案。我希望它将来会对你或其他人有用。

享受。

答案 1 :(得分:16)

这样的东西更通用,可以重复使用。

public function rules() {
    return array(
        array('username','either','other'=>'email'),
    );
}
public function either($attribute_name, $params)
{
    $field1 = $this->getAttributeLabel($attribute_name);
    $field2 = $this->getAttributeLabel($params['other']);
    if (empty($this->$attribute_name) && empty($this->$params['other'])) {
        $this->addError($attribute_name, Yii::t('user', "either {$field1} or {$field2} is required."));
        return false;
    }
    return true;
}

答案 2 :(得分:5)

Yii2     

namespace common\components;

use yii\validators\Validator;

class EitherValidator extends Validator
{
    /**
     * @inheritdoc
     */
    public function validateAttributes($model, $attributes = null)
    {
        $labels = [];
        $values = [];
        $attributes = $this->attributes;
        foreach($attributes as $attribute) {
            $labels[] = $model->getAttributeLabel($attribute);
            if(!empty($model->$attribute)) {
                $values[] = $model->$attribute;
            }
        }

        if (empty($values)) {
            $labels = '«' . implode('» or «', $labels) . '»';
            foreach($attributes as $attribute) {
                $this->addError($model, $attribute, "Fill {$labels}.");
            }
            return false;
        }
        return true;
    }
}
模特中的

public function rules()
{
    return [
        [['attribute1', 'attribute2', 'attribute3', ...], EitherValidator::className()],
    ];
}

答案 3 :(得分:2)

我不认为有一个预定义的规则可以在这种情况下工作,但它很容易define your own对于用户名和密码字段,规则是“如果为空($ username。$ password) ){return error}“ - 您可能还需要检查最小长度或其他字段级要求。

答案 4 :(得分:0)

您可以在模型类中使用私有属性来防止显示错误两次(不要将错误分配给模型的属性,但只添加到模型而不指定它):

class CustomModel extends CFormModel
{
    public $username;
    public $email;

    private $_addOtherOneOfTwoValidationError = true;

    public function rules()
    {
        return array(
            array('username, email', 'requiredOneOfTwo'),
        );
    }

    public function requiredOneOfTwo($attribute, $params)
    {
        if(empty($this->username) && empty($this->email))
        {
            // if error is not already added to model, add it!
            if($this->_addOtherOneOfTwoValidationError)
            {
                $this->addErrors(array('Please enter your username or emailId.'));

                // after first error adding, make error addition impossible
                $this->_addOtherOneOfTwoValidationError = false;
            }

            return false;
        }

        return true;
    }
}

答案 5 :(得分:0)

不要忘记“skipOnEmpty”attr。这花了我几个小时。

 protected function customRules()
{
    return [
              [['name', 'surname', 'phone'], 'compositeRequired', 'skipOnEmpty' => false,],
    ];
}

public function compositeRequired($attribute_name, $params)
{
    if (empty($this->name)
        && empty($this->surname)
        && empty($this->phone)
    ) {
        $this->addError($attribute_name, Yii::t('error', 'At least 1 of the field must be filled up properly'));

        return false;
    }

    return true;
}

答案 6 :(得分:0)

这对我有用:

            ['clientGroupId', 'required', 'when' => function($model) {
                return empty($model->clientId);
            }, 'message' => 'Client group or client selection is required'],

答案 7 :(得分:0)

Yii 1

当然可以对其进行优化,但可能会对某人有所帮助

class OneOfThemRequiredValidator extends \CValidator
{
    public function validateAttribute($object, $attribute)
    {
        $all_empty = true;
        foreach($this->attributes as $_attribute) {
            if (!$this->isEmpty($object->{$_attribute})) {
                $all_empty = false;
                break;
            }
        }

        if ($all_empty) {
            $message = "Either of the following attributes are required: ";
            $attributes_labels = array_map(function($a) use ($object) {
                    return $object->getAttributeLabel($a);
                }, $this->attributes);
            $this->addError($object, $_attribute, $message . implode(',', 
            $attributes_labels));
        }
    }
}