ruby on railsでsimple_calenderのgemを使ってシンプルな日記アプリを作っているのですが、本番環境にAWSで自動デプロイ後にブラウザ表示しようとすると標題のエラーが出てしまいます。
ローカル環境では特にエラーは表示されていません。
EC2にて(アプリケーション名)/current/log/production.logを確認しましたが、エラーはありませんでした。
ローカルにてlog/development.logを確認したところ、
Started GET "/" for ::1 at 2020-07-18 00:33:26 +0900 Processing by NotesController#index as HTML Rendering notes/index.html.haml within layouts/application [1m[36mUser Load (3.7ms)[0m [1m[34mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 ORDER BY `users`.`id` ASC LIMIT 1[0m ↳ app/views/notes/index.html.haml:3 [1m[36mUser Load (0.4ms)[0m [1m[34mSELECT `users`.* FROM `users`[0m ↳ app/views/notes/index.html.haml:5 [1m[36mNote Load (0.4ms)[0m [1m[34mSELECT `notes`.* FROM `notes`[0m ↳ app/views/notes/index.html.haml:29 Rendered simple_calendar/_month_calendar.html.haml (12.3ms) Rendered notes/index.html.haml within layouts/application (42.2ms) Completed 500 Internal Server Error in 74ms (ActiveRecord: 4.5ms) ActionView::Template::Error (undefined method `id' for nil:NilClass): 16: - week.each do |day| 17: = content_tag :td, class: calendar.td_classes_for(day) do 18: - if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(block) 19: - capture_haml(day, sorted_events.fetch(day, []), &block) 20: - else 21: - block.call day, sorted_events.fetch(day, [])
上記のように'id'が定義されていないと出ているようなのですが、ローカル環境ではうまく行っているため、原因がこれ以上追求できなくて困っています。
どなたかアドバイスをいただけると非常にありがたいです。
問題のファイルと指摘されているnotes/index.html.hamlも参考に載せておきます。
haml
1.header 2 .mainContainer 3 - if user_signed_in? 4 = link_to root_path, class: "mainContainer__title", data: {"turbolinks" => false} do 5 = "#{@user[current_user.id - 1].nickname}の日記" 6 - else 7 = link_to root_path, class: "mainContainer__title", data: {"turbolinks" => false} do 8 = "日記" 9 .subContainer 10 MENU 11 .menu#color 12 .navigation-block 13 %ul.navigation-list 14 %li.nav_menu1 15 = link_to '日記を書く', new_note_path, data: {"turbolinks" => false} 16 %li.nav_menu2 17 = link_to '投稿一覧', note_path(@notes), data: {"turbolinks" => false} 18 - if user_signed_in? 19 %li.nav_menu3 20 = link_to 'ログアウト', destroy_user_session_path, method: :delete 21 - else 22 %li.nav_menu4 23 = link_to 'ログイン', new_user_session_path 24 25.body 26 .sidebar 27 .sidebar__text 28 - if user_signed_in? 29 .sidebar__calendar 30 = month_calendar events: @notes do |date, notes| 31 = date.day 32 %br 33 - notes.each do |note| 34 - if current_user.id == note.user_id 35 = link_to edit_note_path(note), data: {"turbolinks" => false} do 36 = "・" 37 = note.title 38 %br 39 - else 40 .sidebar__calendar 41 = month_calendar events: @notes do |date, notes| 42 = date.day 43 %br 44 .main 45 #existing_diary 46 .new_diary#newdiary 47 - if user_signed_in? 48 = link_to '日記を書く', new_note_path, data: {"turbolinks" => false}, class: "new_diary__btn" 49 - else 50 = link_to '日記を書く', new_user_session_path, class: "new_diary__btn"
他に必要な情報がありましたらお申し付けください。
何卒よろしくお願い申し上げます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。