バリデーションして
簡単なエラーメッセージは表示できますが、
index.html.erb <%= form_for(@book) do |f| %> <% if @book.errors.any? %> <p>error</p> <% end %> <h6 class=b>Title</h6> <%= f.text_field :title %> <h6 class=b>Body</h6> <%= f.text_area :body %>
modelの方
1class Book < ApplicationRecord 2 validates :title, presence: true 3 validates :body, presence: true 4end 5
と書いていますが、
下記のような表示ができるように変えたいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。