Laravel 8 自定義錯(cuò)誤信息

2021-07-17 16:08 更新

如果有需要,您可以使用自定義的錯(cuò)誤信息來(lái)替換默認(rèn)的錯(cuò)誤信息。有幾種方法可以指定自定義錯(cuò)誤信息。首先,您可以將自定義信息作為 Validator::make 方法的第三個(gè)參數(shù):

$messages = [
    'required' => 'The :attribute field is required.',
];

$validator = Validator::make($input, $rules, $messages); 

在該例中,:attribute 占位符將被驗(yàn)證字段的實(shí)際名稱(chēng)替換。您亦可在驗(yàn)證消息中使用其他占位符。例如:

$messages = [
    'same' => 'The :attribute and :other must match.',
    'size' => 'The :attribute must be exactly :size.',
    'between' => 'The :attribute value :input is not between :min - :max.',
    'in' => 'The :attribute must be one of the following types: :values',
];
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)