上記のようなスケジュール作成アプリで、間違ったスケジュールを新規登録した場合に
エラーメッセージを表示したいのですが、
終了日が今日以前の日付で入力された場合、
"終了日は今日以降の日付で選択してください"と表示させます。
その為に<%= render 'shared/error_messages' %>を挿入し,
shared/error_messagesでdateクラスを使用する為にrequireしましたが、下のようにエラーが表示されて
使うことができません。
ご教授願いします。
NoMethodError
1Showing /home/ec2-user/environment/task_app/app/views/shared/_error_messages.html.erb where line #26 raised: 2 3undefined method `before?' for nil:NilClass 4Extracted source (around line #26): 524 625 726 827 928 1029 11 12 13 <ul> 14 <% if @schedule.end_date.before? @schedule.start_date %> 15 <li>終了日は今日以降の日付で選択してください</li> 16 <% end %> 17 </ul> 18 19Trace of template inclusion: app/views/schedules/new.html.erb 20コード
<views/schedules/new.html.erb>
<div class = "main_container"> <%= form_for(@schedule) do |f| %> <%= render 'shared/error_messages' %> <table> <tr> <th><%= f.label "タイトル" %></th> <td><%= f.text_field :title %></td> </tr> <tr> <th><%= f.label :start_date %></th> <td><%= f.date_field :start_date %></td> </tr> <tr> <th><%= f.label :end_date %></th> <td><%= f.date_field :end_date %></td> </tr> <tr> <th><%= f.label :all_day %></th> <td><%= f.check_box :all_day, :as => :boolean %></td> </tr> <tr> <th><%= f.label :memo %></th> <td><%= f.text_field :memo %></td> </tr> </table> <div> <ul> <li><%= f.submit "スケジュールを新規登録する" %></li> <li><%= link_to "スケジュール一覧に戻る", root_path %></li> </ul> </div> <% end %> </div>
<shared/_error_messages.html.erb>
<% require "date" %> <% if @schedule.errors.any? %> <div> <p class = "alert alert__failure"> スケジュールを登録できませんでした。 </p> <ul> <% if @schedule.title.empty? %> <li>タイトルを入力してください</li> <% end %> </ul> <ul> <% if @schedule.start_date.blank? %> <li>開始日を入力してください</li> <% end %> </ul> <ul> <% if @schedule.end_date.blank? %> <li>終了日を入力してください</li> <% end %> </ul> <ul> <% if @schedule.end_date.before? @schedule.start_date %> <li>終了日は今日以降の日付で選択してください</li> <% end %> </ul> </div> <% end %>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/20 10:41