1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Laravel】 Selectフォームでdisableを使用するとバリデーションに引っ掛かる

Last updated at Posted at 2021-09-29

###Selectフォームでdisableを使用するとバリデーションに引っ掛かる

####問題となったコード
edit状態の際にdisableが有効になると思ってほしい

PHP.○○Blade.php
{{Form::select('fruits', ['apple', 'banana', 'kiuwi']),
  [$is_edit ? 'disable' : '',
]}}

Requestで必須としてバリデーションしている

PHP.○○Request.php
'fruits' => [
     'required',
 ],

####具体的な問題点
disableするとPOSTされないので必須のバリデーションに引っ掛かる

参考記事
https://lightgauge.net/language/html/2525/

####解決策
インプットタグにtype=hiddenとvalueを指定して記述する

PHP.○○Blade.php
{{Form::select('fruits', ['apple', 'banana', 'kiuwi']),
  [$is_edit ? 'disable' : '',
]}}
@if ($is_edit)
  <input type="hidden" name="fruits" value="{{$fruits}}">
@endif

####終わりに
一時間ぬまりました。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?