W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
如果有需要,您可以使用自定義的錯(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',
];
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: