Laravel 5.5在验证请求文件中使用自定义验证规则?

纳克·科尼(Knack Kwenie)

是否可以在验证请求文件中使用我的自定义验证规则?

我想使用名为EmployeeMail的自定义规则,这是请求文件的代码

class CoachRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }

/**
 * Get the validation rules that apply to the request.
 *
 * @return array
 */
public function rules()
{
    $rules = [];

    if ($this->isMethod('post') ) {
        $rules = [
            'name' => 'required|string',
            'email' => 'required|email|employeemail', <<<--- this
            'till' => 'required|date_format:H:i|after:from',
        ];
    }

    //TODO fix this
    //TODO add custom messages for every field

    return $rules;
}
}

当我尝试使用它时,它给我一个错误

方法[validateEmployeemail]不存在。

自定义规则代码

namespace App\Rules;

use Illuminate\Contracts\Validation\Rule;

class EmployeeMail implements Rule
{
/**
 * Create a new rule instance.
 *
 * @return void
 */
public function __construct()
{
    //
}

/**
 * Determine if the validation rule passes.
 *
 * @param  string  $attribute
 * @param  mixed  $value
 * @return bool
 */
public function passes($attribute, $value)
{
    // If mail is that of an employee and not a student pass it
    return preg_match("/@test.nl$/", $value) === 1;
}

/**
 * Get the validation error message.
 *
 * @return string
 */
public function message()
{
    return 'Email is geen werknemers mail';
}
}

我只能使用这种自定义规则吗?

$items = $request->validate([
    'name' => [new FiveCharacters],
]);
纳克·科尼(Knack Kwenie)

Rutvij Kothari在评论中回答了这个问题。

似乎您正在使用正则表达式验证字符串,通过regex内置验证方法可以实现相同的逻辑。一探究竟。laravel.com/docs/5.5/validation#rule-regex无需创建自己的验证规则。–鲁特维·科塔里(Rutvij Kothari)

如果要使用验证,请将其传递到数组中。像这样。'email'=> ['required','email',新员工邮箱]

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章