我为扩展程序创建了自定义验证程序:
'extension' => 'The :attribute must be a file of type: :values.',
自定义消息:
:values
它似乎不会取代Validator::replacer('wtf', function ($message, $attribute, $rule, $parameters) {
return 'show me something!!!!!';
});
部分。
我尝试过使用自定义替换也没有运气:
grails spring security plugin
但这也没有做任何事情。
缺少什么?
答案 0 :(得分:5)
Laravel默认不会翻译values
占位符。您使用replacer
(docs)做了正确的事情。但看起来你犯了一些错误。
ServiceProvider代码:
// in boot method define validator
Validator::extend('extension', function ($attribute, $file, $extensions, $validator) {
$ext = strtolower(@$file->getClientOriginalExtension());
return in_array($ext, $extensions);
});
// then - replacer with the same name
Validator::replacer('extension',
function ($message, $attribute, $rule, $extensions) {
return str_replace([':values'], [join(", ", $extensions)], $message);
});
在控制器中:
$validator = Validator::make($request->all(), [
'file' => 'required|extension:jpg,jpeg',
]);
在语言文件中:
'extension' => 'The :attribute must be a file of type: :values.',