我使用Windows的vagrant重新安装了Laravel 5.4。
现在,当我按照laracast中的说明进行操作并尝试进行表单验证时,一切都很好,但是 $ errors 变量根本不包含任何错误消息。
摘录来自 PostsController
public function store()
{
$this->validate(request(), [
'title' => 'required|unique:posts,title|min:3',
'body' => 'required'
]);
Post::firstOrCreate(request(['title', 'body']));
return redirect()->route('create-post');
}
我的 create.blade.php 中的片段
@extends('layout')
@section('content')
<main role="main" class="container">
<div class="row">
<div class="col-md-8 blog-main">
<h3 class="pb-3 mb-4 font-italic border-bottom">
Create Post Form
</h3>
<form action="/api/posts" method="POST">
{{ csrf_field() }}
<div class="form-group">
<label for="title">Title</label>
<input type="text" class="form-control" id="title" placeholder="Title" name="title" value="">
<small class="text-danger">{{ $errors->first('title') }}</small>
</div>
<div class="form-group">
<label for="body">Content</label>
<textarea class="form-control" id="body" rows="5" name="body" placeholder="Contents Here.." value=""></textarea>
<small class="text-danger">{{ $errors->first('body') }}</small>
</div>
<div class="form-group">
<button class="btn btn-primary" type="submit">Submit</button>
</div>
<div class="form-group">
<div class="alert alert-{{ $errors->any() ? 'danger' : 'default' }}">
<ul>
@foreach($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
</div>
</form>
</div>
@include('partials.sidebar')
</div>
</main>
@endsection
以及验证失败后的结果
有什么我想念的东西吗?
修改
这是我的路线的摘要:
Route::get('/', 'PostsController@index');
Route::get('/posts/{post}', 'PostsController@show');
Route::get('/create', function() {
return view('posts.create');
})->name('create-post');
Route::post('/posts', 'PostsController@store');
答案 0 :(得分:1)
找到答案。
因为它是5.4,所以我没有注意到所有的web.php都在名为 web
的中间件下 包含 \ Illuminate \ View \ Middleware \ ShareErrorsFromSession :: class 的
我的 api / posts 位于 api 中间件上,这就是为什么没有会话共享的原因。
此链接也帮助解决了这个问题。
答案 1 :(得分:0)
您正在验证器中传递Request
对象。您需要稍微更改验证码:
$this->validate(request()->all(), [
'title' => 'required|unique:posts,title|min:3',
'body' => 'required'
]);
在docs中了解更多信息。
答案 2 :(得分:0)
您可以通过这种方式进行验证
$this->validate($request, [
'title' => 'required|unique:posts,title|min:3',
'body' => 'required'
]);
我希望这会起作用。