1.对于交互提交数据,验证如:
#验证 $this->validate(\request(),[ ‘title‘ => ‘required|string|min:3|max:20‘, ‘content‘ => ‘required|string|min:10‘, ],[ ‘title.min‘ => ‘this is short‘, # 自定义提示内容 ]);
2.具体对字段的系统提供限制,参考:resource/lang/cn/validation.php
3.如果想将英文提示换成其他语言,如中文
a. 复制整个“en”文件,重命名改为:cn
b.将新文件夹cn下的文件“validation.php”替换为中文版的
参考:https://laravel-china.org/articles/5840/validation-validation-in-laravel-returns-chinese-prompt
c.修改文件 config/app.php
‘locale‘ => ‘cn‘,
4.测试
原文地址:https://www.cnblogs.com/wuheng1991/p/9902748.html
时间: 2024-11-08 22:52:13