当前位置:  开发笔记 > 编程语言 > 正文

Yii2:任何一个字段都需要验证

如何解决《Yii2:任何一个字段都需要验证》经验,为你挑选了2个好方法。

我必须实现标题中提到的验证,即需要两个字段之一(电子邮件,电话).我在我这样做model:

[['email'],'either', ['other' => ['phone']]],

这是方法:

 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;
    }

当我访问我的索引页面时,它给了我这个错误:

异常(未知属性)'yii\base\UnknownPropertyException',消息'设置未知属性:yii\validators\InlineValidator :: 0'

有帮助吗?



1> Bizley..:

规则应该是:

['email', 'either', 'params' => ['other' => 'phone']],

方法:

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."));
    }
}



2> 小智..:

如果您不关心当用户都不提供两个字段时两个字段都显示错误:

此解决方案比其他答案短,并且不需要新的验证器类型/类:

$rules = [
  ['email', 'required', 'when' => function($model) { return empty($model->phone); }],
  ['phone', 'required', 'when' => function($model) { return empty($model->email); }],
];

如果您想获得自定义的错误消息,只需设置以下message选项:

$rules = [
  [
    'email', 'required',
    'message' => 'Either email or phone is required.',
    'when' => function($model) { return empty($model->phone); }
  ],
  [
    'phone', 'required',
    'message' => 'Either email or phone is required.',
    'when' => function($model) { return empty($model->email); }
  ],
];

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有