标签:word 提交 each 需要 生成 3.0 设置 outlook att
1 refresh
的作用是重置数据库并重新运行所有迁移。(清空数据库所有表和记录,重新生成迁移)。
php artisan migrate:refresh
2 在表单提交的时候,失败会重新刷新页面,所有数据都会丢失,把 input 的 value 设置为 {{ old(‘name‘) }} 即可在验证失败的时候刷新页面数据保存还在。
<input type="text" name="name" class="form-control" value="{{ old(‘name‘) }}">
3 laravel的验证:
required
来验证用户名是否为空。min
和 max
来限制用户名所填写的最小长度和最大长度。users
做验证。confirmed
来进行密码匹配验证。
4 laravel验证错误提示中文包安装,github地址:https://github.com/overtrue/laravel-lang
composer require "overtrue/laravel-lang:~3.0"
在config/app.php配置文件中修改
: ‘locale‘ => ‘zh-CN‘
danger
, warning
, success
, info
这四个键名在 Bootstrap 分别具有不同样式展现效果,因此后面我们将使用这几个键名作为消息提示的专有设定。$userInfo = $this->validate($request,[
‘email‘ => ‘required|email‘,
‘password‘ => ‘required‘
]);
dd($userInfo);
array:2 [▼
"email" => "esaiting@outlook.com"
"password" => "123456"
]
标签:word 提交 each 需要 生成 3.0 设置 outlook att
原文地址:https://www.cnblogs.com/muwu/p/8971456.html