我是使用validate方法進行表單驗證的。
<code>$messages = [ 'art_editor.required' => '作者不能为空!', 'art_title.required' => '文章标题不能为空!', 'art_tag.required' => '文章关键字不能为空!', 'art_thumb.required' => '请上传首页图或者添加CDN地址', 'art_description.required' => '文章描述不能为空!', 'art_content.required' => '请填写文章正文!', ]; $result = $this->validate($request, [ 'art_editor' => 'required', 'art_title' => 'bail|required|max:25', 'art_tag' => 'required|max:8', 'art_thumb' => 'required', 'art_description' => 'required|max:100', 'art_content' => 'required' ], $messages);</code>
但是一旦表單驗證失敗,雖然會返回失敗具體信息,但是正確的那些input內容也都一起被清空了,那如果我寫完一篇文章,是文章標題驗證失敗,那豈不是整篇文章都需要重寫? 所以請各位幫忙!謝謝!