0
0

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 1 year has passed since last update.

required: trueでフォームの空送信を防ぐ

Posted at

はじめに

通常モデルに記述するバリデーションとは別でフォームに空での送信を
required: trueで防ぐことが出来ます。
利便性を上げる為に実施しました!

例その1

qiita.rb
<%= f.email_field :email
                   required: true,
                   autocomplete: "email",
                   placeholder: "メールアドレスを入力して下さい",
%>

実装イメージ

下記のように空で送信した際にメッセージを表示してくれます!便利!
スクリーンショット 2023-07-07 22.52.08.png

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?