作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
如何使用此格式返回自定义错误消息?
$this->validate($request, [
'thing' => 'required'
]);
最佳答案
要获取自定义错误消息,您需要在第三个参数上传递自定义错误消息,就像那样
$this->validate(
$request,
['thing' => 'required'],
['thing.required' => 'this is my custom error message for required']
);
关于php - 如何从 Controller 方法验证返回自定义错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40067212/
我是一名优秀的程序员,十分优秀!