特に何か追加したりしていないはずなのにこのようなエラーが出てしまいました。
原因がわからず困っています。viewに問題があるのかなど確認しましたが、特になさそうです。
Started GET "/" for 127.0.0.1 at 2019-12-16 13:15:48 +0900 Processing by TopController#index as HTML Member Load (0.1ms) SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] ↳ app/controllers/application_controller.rb:4:in `current_member' Rendering top/index.html.erb within layouts/application Article Load (0.2ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."released_at" DESC ↳ app/views/top/index.html.erb:1 Rendered top/index.html.erb within layouts/application (Duration: 3.6ms | Allocations: 2766) Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.4ms | Allocations: 8536)
<!DOCTYPE html> <html> <head> <title><%= page_title %></title> <%= csrf_meta_tags %> <%= csp_meta_tag %> <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> </head> <body> <div id="container"> <header> <%= render "shared/header" %> </header> <main> <% if flash.notice %> <p class="notice"><%= flash.notice %></p> <% end %> <%= yield %> </main> <aside id="sidebar"> <%= render "shared/sidebar" %> </aside> <footer> <%= render "shared/footer" %> </footer> </div> </body> </html>
回答3件
あなたの回答
tips
プレビュー