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

时间:2017-12-20 22:48:44

标签: php laravel validation

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

我想使用名为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],
]);

1 个答案:

答案 0 :(得分:4)

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

您似乎正在使用正则表达式验证字符串,通过正则表达式buit-in验证方法可以实现相同的逻辑。看看这个。 laravel.com/docs/5.5/validation#rule-regex无需创建自己的验证规则。 - Rutvij Kothari

如果要使用验证,请将其传递给数组。像这样。 &#39;电子邮件&#39; =&GT; [&#39; required&#39;,&#39; email&#39;,new employeemail]

相关问题