欢迎各位兄弟 发布技术文章
这里的技术是共享的
html端
<input type="file" class="" name="aa[]" >
验证端规则 记住要使用 aa.*
public function rules()
{
return [
//
'aa.*' => 'mimes:jpeg,png,gif',
];
}
yjy.shrszg.cn\resources\lang\zh\validation.php 中 中文汉化如下这样写
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
'aa.*' => [
'mimes' => '对比图必须为jpg或png或gif',
],
],