我正在使用Laravel 8和 Bootstrap 5 制作博客應用程式。
我在嘗試驗證我的“添加新文章”表單時遇到了一個問題:當表單驗證失敗時,有效欄位不會保留它們的值,盡管 ne 使用了 Blade 的old()方法。
在控制器中,我有:
namespace App\Http\Controllers\Dashboard;
use Illuminate\Support\Str;
use Illuminate\Support\Facades\Validator;
use Illuminate\Support\Facades\Auth;
use App\Http\Controllers\Controller;
use App\Models\ArticleCategory;
use App\Models\Article;
use Illuminate\Http\Request;
class ArticleController extends Controller
{
private $rules = [
'category_id' => ['required', 'exists:article_categories,id'],
'title' => ['required', 'string', 'max:255'],
'short_description' => ['required', 'string', 'max:255'],
'image' => ['mimes: jpeg, jpg, png, gif', 'max:2048'],
'content' => ['required', 'string']
];
private $messages = [
'category_id.required' => 'Please pick a category for the article',
'title.required' => 'Please provide a title for the article',
'short_description.required' => 'The article needs a short description',
'content.required' => 'Please add content'
];
public function categories() {
return ArticleCategory::all();
}
public function index() {
$articles = Article::paginate(10);
return view('dashboard/articles',
['articles' => $articles]
);
}
public function create() {
// Load the view and populate the form with categories
return view('dashboard/add-article',
['categories' => $this->categories()]
);
}
public function save(Request $request) {
// Validate form (with custom messages)
$validator = Validator::make($request->all(), $this->rules, $this->messages);
if ($validator->fails()) {
return redirect()->back()->withErrors($validator->errors());
}
$fields = $validator->validated();
// Upload article image
$current_user = Auth::user();
if (isset($request->image)) {
$imageName = md5(time()) . $current_user->id . '.' . $request->image->extension();
$request->image->move(public_path('images/articles'), $imageName);
}
// Data to be added
$form_data = [
'user_id' => Auth::user()->id,
'category_id' => $fields['category_id'],
'title' => $fields['title'],
'slug' => Str::slug($fields['title'], '-'),
'short_description' => $fields['short_description'],
'content' => $fields['content'],
'image' => $fields['image'],
'featured' => $fields['featured']
];
// Insert data in the 'articles' table
$query = Article::create($form_data);
if ($query) {
return redirect()->route('dashboard.articles')->with('success', 'Article added');
} else {
return redirect()->back()->with('error', 'Adding article failed');
}
}
}
表格:
<form method="POST" action="{{ route('dashboard.articles.add') }}">
@csrf
<div class="row mb-2">
<label for="title" class="col-md-12">{{ __('Title') }}</label>
<div class="col-md-12 @error('title') has-error @enderror">
<input id="title" type="text" placeholder="Title" class="form-control @error('title') is-invalid @enderror" name="title" value="{{ old('title') }}" autocomplete="title" autofocus>
@error('title')
<span hljs-string">" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div hljs-number">2">
<label for="short_description" hljs-number">12">{{ __('Short description') }}</label>
<div hljs-number">12 @error('short_description') has-error @enderror">
<input id="short_description" type="text" placeholder="Short description" hljs-built_in">error('short_description') is-invalid @enderror" name="short_description" value="{{ old('short_description') }}" autocomplete="short_description" autofocus>
@error('short_description')
<span hljs-string">" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div hljs-number">2">
<label for="category" hljs-number">12">{{ __('Category') }}</label>
<div hljs-number">12 @error('category_id') has-error @enderror">
<select name="category_id" id="category" hljs-built_in">error('category_id') is-invalid @enderror">
<option value="0">Pick a category</option>
@foreach($categories as $category)
<option value="{{ $category->id }}">{{ $category->name }}</option>
@endforeach
</select>
@error('category_id')
<span hljs-string">" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div hljs-number">2">
<div hljs-number">12 d-flex align-items-center switch-toggle">
<p hljs-number">0 me-3">Featured article?</p>
<input hljs-number">1" type="checkbox" name="featured" id="featured">
<label hljs-number">1" for="featured">{{ __('Toggle') }}</label>
</div>
</div>
<div hljs-number">2">
<label for="image" hljs-number">12">{{ __('Article image') }}</label>
<div hljs-number">12 @error('image') has-error @enderror">
<input type="file" name="image" id="file" hljs-string">">
@error('image')
<span hljs-string">" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div hljs-number">2">
<label for="content" hljs-number">12">{{ __('Content') }}</label>
<div hljs-number">12 @error('content') has-error @enderror">
<textarea name="content" id="content" hljs-built_in">error('content') is-invalid @enderror" placeholder="Content" cols="30" rows="6">{{ old('content') }}</textarea>
@error('content')
<span hljs-string">" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div hljs-number">0">
<div hljs-number">12">
<button type="submit" hljs-number">100 btn btn-primary">
{{ __('Save') }}
</button>
</div>
</div>
</form>
路線:
// Article routes
Route::group(['prefix' => 'articles'], function() {
Route::get('/', [ArticleController::class, 'index'])->name('dashboard.articles');
Route::get('/new', [ArticleController::class, 'create'])->name('dashboard.articles.new');
Route::post('/add', [ArticleController::class, 'save'])->name('dashboard.articles.add');
Route::get('/delete/{id}', [ArticleController::class, 'delete'])->name('dashboard.articles.delete');
});
問題:
我期待這種將有效欄位的值保持為無效形式的語法應該可以作業:value="{{ old('title') }}". 但是,出于我能夠發現的原因,它沒有。表格被完全重置。
我的錯誤是什么?
uj5u.com熱心網友回復:
您在沒有告訴 Laravel 傳遞舊輸入的情況下重定向回上一頁。使用withInput()帶有路由回傳的方法。
改變
return redirect()->back()->withErrors($validator->errors());
和
return redirect()->back()->withErrors($validator->errors())->withInput();
uj5u.com熱心網友回復:
您可以改用此方法,然后輸入的回傳將自動發生
$fields = $this->validate($request->all(), $this->rules, $this->messages);
// if ($validator->fails()) {
// return redirect()->back()->withErrors($validator->errors());
// }
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/450832.html
