我目前正在研究laravel,并在形式上进行实验。我正在使用Laravel集体。在我的控制器中,我有以下代码。
$this->validate($request, [
'title' => 'required',
'body' => 'required',
]);
当其中一个字段为空时,它将重定向回表单,并保留该字段的先前值。例如,如果我在标题字段中填写This is a title
,并将正文保留为空,则验证将失败,并且表单将重定向回其自身,并且title的值为This is a title
是否可以解决所有问题(或特定字段)在验证失败时为空?谢谢。
答案 0 :(得分:0)
这是Laravel
的功能在您的*.blade.php
中,您可能会发现以下内容:
<input type="text" name="username" value="{{ old('username') }}">
您只需要从HTML中删除该值,就不会保留它。