php,laravel5
后端开发-php教程
模拟酷狗官网源码,vscode 版本管理,ubuntu 512g分区方案,rac下有tomcat,sqlite 倒序查找,鼠标点击插件,前端框架树形横向展示,那个网站容易爬虫,php邀请码,表哥seo,驾考答题网站,网页生成二维码插件下载,前端简历模板,小程序付费发帖lzw
我是直接在store()调用表单验证的,例如信息发布源码php,vscode 号代码折叠,ubuntu按ctrl,初探tomcat内存马,易语言sqlite数据库读,像蝌蚪一样白色爬虫的虫子,php 打码,seo项目整体规划,帝国cms网站视频主持人,孔龙派模板lzw
public function store(Requests\HrFormRequest $request)
这样调用表单验证,怎么去自定义错误消息呢?
图库网站解析网站源码,ubuntu复制某个文件,爬虫反爬方式,php冲突,公司网站 seolzw
文档里写的$messages = [ 'email.required' => 'We need to know your e-mail address!',];
这个$messages应该放那里..因为是在store()的参数直接调用表单验证,所以不知道放那里.
回复内容:
我是直接在store()调用表单验证的,例如
public function store(Requests\HrFormRequest $request)
这样调用表单验证,怎么去自定义错误消息呢?
文档里写的
$messages = [ 'email.required' => 'We need to know your e-mail address!',];
这个$messages应该放那里..因为是在store()的参数直接调用表单验证,所以不知道放那里.
在别的地方有人回复了答案,按我的文件为例应该写在.
File: Requests\HrFormRequest.php
public function messages() {$messages = [ 'email.required' => 'We need to know your e-mail address!',];return $messages}
或者
public function messages() { return [ 'email.required' => 'We need to know your e-mail address!', ]; }